From 3b8457c9c63f0996d8dae63ac988f976da956d38 Mon Sep 17 00:00:00 2001
From: eight <641137800@qq.com>
Date: 星期三, 28 八月 2024 10:58:49 +0800
Subject: [PATCH] update
---
src/api/ecg/doctor/index.ts | 17 +++++++++++++++++
1 files changed, 17 insertions(+), 0 deletions(-)
diff --git a/src/api/ecg/doctor/index.ts b/src/api/ecg/doctor/index.ts
index 53ae9a0..3ee013c 100644
--- a/src/api/ecg/doctor/index.ts
+++ b/src/api/ecg/doctor/index.ts
@@ -1,8 +1,15 @@
import request from '@/config/axios'
export interface RoomBedVO {
+ roomId: number | null // 璇婂缂栧彿
+ bedNo: string | null // 璇婄枟搴婄紪鍙�
+}
+
+export interface PatientVO {
roomId: number // 璇婂缂栧彿
bedNo: string // 璇婄枟搴婄紪鍙�
+ patId: string // 鎮h�呯紪鍙�
+ jumpFlag: number // 鎻掗槦鏍囪
}
export interface PatientStatisticVO {
@@ -33,6 +40,16 @@
// 鍙栨偅鑰呯粺璁�
getPatientStatistic: async (params: RoomBedVO) => {
return await request.get({ url: `/ecg/doctor/get-patient-statistic`, params })
+ },
+
+ // 鍙洖杩囧彿鎮h��
+ recallPatient: async (params: PatientVO) => {
+ return await request.get({ url: `/ecg/doctor/recall-patient`, params })
+ },
+
+ // 鍙洖杩囧彿鎮h��
+ patientJump: async (params: PatientVO) => {
+ return await request.get({ url: `/ecg/doctor/patient-jump`, params })
}
}
--
Gitblit v1.9.3