From bc9538a9e071259ca8bbb6de52c60c9d7a55a03b Mon Sep 17 00:00:00 2001
From: WXL (wul) <wl_5969728@163.com>
Date: 星期三, 23 九月 2026 14:02:44 +0800
Subject: [PATCH] 测试完成
---
src/api/patient/record.js | 15 +++++++++++++--
1 files changed, 13 insertions(+), 2 deletions(-)
diff --git a/src/api/patient/record.js b/src/api/patient/record.js
index f4a9611..e318faa 100644
--- a/src/api/patient/record.js
+++ b/src/api/patient/record.js
@@ -3,10 +3,13 @@
// 鏌ヨ浣忛櫌璁板綍鍒楄〃
export function listpatient(data) {
+ const params = { ...data };
+ // bedSort 涓嶄紶鍗充笉鎸夊簥鍙锋帓搴�
+ if (params.bedSort == null || params.bedSort === "") delete params.bedSort;
return request({
url: '/smartor/patinhosp/selectPatMedInhospList',
method: 'post',
- data: data
+ data: params
})
};
// 浣忛櫌璁板綍璇︽儏
@@ -30,4 +33,12 @@
url: '/smartor/patinhosp/remove/' + userId,
method: 'get',
})
- };
\ No newline at end of file
+ };
+ // 鏌ヨ浣忛櫌璁板綍鍒楄〃
+export function listoperation(data) {
+ return request({
+ url: '/smartor/operation/list ',
+ method: 'post',
+ data: data
+ })
+};
--
Gitblit v1.9.3