update 弹窗增加手机号字段,增加预警详情弹窗

This commit is contained in:
zk
2024-07-08 15:22:03 +08:00
parent b732e3ab64
commit e367d13c78
10 changed files with 166 additions and 15 deletions
+3
View File
@@ -6,6 +6,7 @@ export enum Api {
getDetail = '/health-medical/medical/hospital/getMedicalHospital',
complaint = '/health-emergency/emergency/tblHelpCenter/sicknessTypeStatistic',
orderDetail = '/health-emergency/emergency/order/list',
listCustom = '/health-watch/watch/watchMonitorData/listCustom',
}
//获取全部部门
@@ -18,3 +19,5 @@ export const complaint = (params: any) => get(Api.complaint, params);
export const getDetail = (params: any) => get(Api.getDetail, params);
//获取主诉分类应急工单详情
export const getOrderDetail = (params: any) => get(Api.orderDetail, params);
//副屏预警查看详情
export const getEarlyWarningDetail = (params: any) => get(Api.listCustom, params);