12 lines
434 B
TypeScript
12 lines
434 B
TypeScript
import { get } from '/src/api/request';
|
|
|
|
export enum Api {
|
|
getMonitorList = '/health-watch/watch/watchMonitorData/getMonitorList',
|
|
getHealthDataList = '/health-archives/archives/groupUserA/getGroupUserAInfo',
|
|
}
|
|
|
|
//健康终端报警
|
|
export const getMonitorList = (params: any) => get(Api.getMonitorList, params);
|
|
//长庆油田大病人数
|
|
export const getHealthDataList = (params: any) => get(Api.getHealthDataList, params);
|