From 77f6a624d414f1d3073580dd3c8a58c9b26adaf9 Mon Sep 17 00:00:00 2001
From: chenyc <501753378@qq.com>
Date: 星期日, 22 十二月 2024 12:25:01 +0800
Subject: [PATCH] ces
---
app.js | 11 +++++------
1 files changed, 5 insertions(+), 6 deletions(-)
diff --git a/app.js b/app.js
index 9c4656c..f8abf1d 100644
--- a/app.js
+++ b/app.js
@@ -293,8 +293,7 @@
if (rows.length > 0) {
const user = rows[0];
const response = {
- code: "1",
- result:[ {
+
patientId: user.code,
fullName: user.patient_name,
gender: user.patient_gender,
@@ -310,8 +309,7 @@
examDoctor:'',
examDept:"",
diagnosisDoctor:''
- }],
- msg: "success"
+
};
res.json(response);
} else {
@@ -338,11 +336,12 @@
* PostCheckExam 病人信息及检测结果以JSON的形式回传至服务器
*/
app.post('/PostCheckExam',async(req,res)=>{
- const mode=req.body
+ // 查看body参数
+ const body=req.body
+
if(mode){
logHttps(mode)
}else{
- mode.action='hahhaha'
logHttps(mode)
}
res.status(400).json({ retCode: "-1", msg: "kankan" });
--
Gitblit v1.8.0