From d447355e6d08e3a48ea6fd0df132e3120ede6a16 Mon Sep 17 00:00:00 2001
From: chenyc <501753378@qq.com>
Date: 星期五, 26 一月 2024 10:31:17 +0800
Subject: [PATCH] 优化细节
---
src/api/user/index.ts | 27 +++++++++++++++++++++++++++
1 files changed, 27 insertions(+), 0 deletions(-)
diff --git a/src/api/user/index.ts b/src/api/user/index.ts
index 229cd57..4594e8b 100644
--- a/src/api/user/index.ts
+++ b/src/api/user/index.ts
@@ -24,4 +24,31 @@
method: 'post',
data: params,
})
+}
+export function listWeightHistory(params: Object) {
+ return request({
+ url: `${confingInfoStore().confingInfo.base_api}/patient/hemo/med/body/state/pre/listWeightHistory`,
+ method: 'post',
+ data: params,
+ })
+}
+export function listBPHistory(params: Object) {
+ return request({
+ url: `${confingInfoStore().confingInfo.base_api}/patient/hemo/med/body/state/pre/listBPHistory`,
+ method: 'post',
+ data: params,
+ })
+}
+export function checkUploadFile(params: Object) {
+ return request({
+ url: `http://127.0.0.1:5000/check-face`,
+ method: 'post',
+ data: params,
+ })
+}
+export function test() {
+ return request({
+ url: `http://127.0.0.1:5000/test`,
+ method: 'post',
+ })
}
\ No newline at end of file
--
Gitblit v1.8.0