From 63ba63b49f07fdbeffaf0b5a0b7ae8cfedf405f7 Mon Sep 17 00:00:00 2001
From: chenyincheng <501753378@qq.com>
Date: 星期四, 23 三月 2023 15:56:22 +0800
Subject: [PATCH] 优化

---
 src/views/home/index.vue |   31 +++++++++++++------------------
 1 files changed, 13 insertions(+), 18 deletions(-)

diff --git a/src/views/home/index.vue b/src/views/home/index.vue
index f570f20..b5ab7a3 100644
--- a/src/views/home/index.vue
+++ b/src/views/home/index.vue
@@ -90,7 +90,7 @@
           sockteStore().setweightSockte({
             type: '体重秤',
             deviceName: '',
-            result: '',
+            result: '0',
             resultTime: '',
             state: 2
           })
@@ -139,7 +139,7 @@
     watch(
       () => patientInfo.value.datetime,
       () => {
-        console.log('患者信息变化', patientInfo.value)
+        console.log('患者信息变化,置空临时患者code', patientInfo.value)
         patientCodeLs = ''
         patientCodeLsXy = ''
         console.log(patientCodeLs, '患者codec初始化')
@@ -190,20 +190,15 @@
     );
     watch(
       () => weightInfo.value.resultTime,
-      () => {
+      async () => {
         console.log("体重变化了", weightInfo.value)
-        // if (patientInfo.value.id === 0) {
-        //   speech.value?.speak({ text: "没有识别的患者,请先验证患者" }).then(() => {
-        //     console.log("播报完成...")
-        //   })
-        // }
-        if (weightInfo.value.result !== "0") {
+        // 体重不能0
+        if (weightInfo.value.result !== "0"&&patientInfo.value.code!=='') {
             // 发送结果到sockte服务
             const mode = {
               patientCode: patientInfo.value.code,
               weight: weightInfo.value.result,
               bloodPressure: ''
-
             }
             if (patientCodeLs !== mode.patientCode) {
               const tt = mode.weight.replace('.', '点')
@@ -212,17 +207,17 @@
                 console.log("播报完成...")
               })
               console.log(111111)
-              // api上传
-              updatePatient(mode).then(re => {
-                console.log(re)
-              }).catch(() => {
-                ElMessage.error('结果上报出错,请联系后台管理员')
-              })
-              // sendPationSet(mode)
               patientCodeLs = mode.patientCode
+              for(let x=0;x<3;x++){
+                const res= await updatePatient(mode)
+                if(res.code===200){
+                  return false
+                }
+              }
             }
             else {
-                console.log(22222)
+               // 临时患者code=当前患者code
+               console.log(22222222222)
                 patientCodeLs = mode.patientCode
               }
             // 计算目标脱水量

--
Gitblit v1.8.0