From e477d995d50232304ba88f3cb673a780b609cc3e Mon Sep 17 00:00:00 2001
From: eight <641137800@qq.com>
Date: 星期六, 12 十月 2024 18:03:57 +0800
Subject: [PATCH] 领用&装机 统计信息
---
src/api/ecg/doctor/index.ts | 35 +++++++++++++++++++++++++++++++++--
1 files changed, 33 insertions(+), 2 deletions(-)
diff --git a/src/api/ecg/doctor/index.ts b/src/api/ecg/doctor/index.ts
index 4f6e59a..040377d 100644
--- a/src/api/ecg/doctor/index.ts
+++ b/src/api/ecg/doctor/index.ts
@@ -16,6 +16,7 @@
export interface PatientStatisticVO {
finishedNum: number
readyNum: number
+ receivedNum: number
passedNum: number
queuingNum: number
}
@@ -48,9 +49,19 @@
return await request.get({ url: `/ecg/doctor/bed-doctor-get`, params })
},
- // 鐪嬪畬锛屽彇涓嬩竴浣嶆偅鑰�
+ // 甯歌鍙彿锛屽彇涓嬩竴浣嶆偅鑰�
finishNextPatient: async (params: RoomBedVO) => {
return await request.get({ url: `/ecg/doctor/finish-next-patient`, params })
+ },
+
+ // 棰嗙敤鍙彿锛屽彇涓嬩竴浣嶆偅鑰�
+ finishReceiveNextPatient: async (params: RoomBedVO) => {
+ return await request.get({ url: `/ecg/doctor/finish-receive-next-patient`, params })
+ },
+
+ // 瑁呮満鍙彿锛屽彇涓嬩竴浣嶆偅鑰�
+ finishInstallNextPatient: async (params: RoomBedVO) => {
+ return await request.get({ url: `/ecg/doctor/finish-install-next-patient`, params })
},
// 杩囧彿锛屽彇涓嬩竴浣嶆偅鑰�
@@ -58,9 +69,19 @@
return await request.get({ url: `/ecg/doctor/pass-next-patient`, params })
},
- // 鍙栧垵濮嬫偅鑰呭垪琛�
+ // 閲嶅彨
+ callAgainPatient: async (params: RoomBedVO) => {
+ return await request.get({ url: `/ecg/doctor/call-again`, params })
+ },
+
+ // 鍙� 甯歌妫�鏌ャ�侀鐢� 鎮h�呭垪琛�
getPatientList: async (params: RoomBedVO) => {
return await request.get({ url: `/ecg/doctor/get-patient-list`, params })
+ },
+
+ // 鍙� 宸查鐢� 鎮h�呭垪琛�
+ getReceivedPatientList: async (params: RoomBedVO) => {
+ return await request.get({ url: `/ecg/doctor/get-received-patient-list`, params })
},
// 鍙栨偅鑰呯粺璁�
@@ -68,6 +89,16 @@
return await request.get({ url: `/ecg/doctor/get-patient-statistic`, params })
},
+ // 璁惧棰嗙敤缁熻
+ getDevReadyStatistic: async (params: RoomBedVO) => {
+ return await request.get({ url: `/ecg/doctor/get-dev-ready-statistic`, params })
+ },
+
+ // 璁惧瑁呮満缁熻
+ getDevInstallStatistic: async (params: RoomBedVO) => {
+ return await request.get({ url: `/ecg/doctor/get-dev-install-statistic`, params })
+ },
+
// 鍙洖杩囧彿鎮h��
recallPatient: async (params: PatientVO) => {
return await request.get({ url: `/ecg/doctor/recall-patient`, params })
--
Gitblit v1.9.3