From b5e123281f226d6d191ca161aa331b1c2064f6a1 Mon Sep 17 00:00:00 2001
From: chenyc <501753378@qq.com>
Date: 星期二, 21 十月 2025 16:02:26 +0800
Subject: [PATCH] 添加界面参数

---
 src/views/home/index.vue |    7 ++++++-
 1 files changed, 6 insertions(+), 1 deletions(-)

diff --git a/src/views/home/index.vue b/src/views/home/index.vue
index 0806e19..8d95ac7 100644
--- a/src/views/home/index.vue
+++ b/src/views/home/index.vue
@@ -184,7 +184,10 @@
                                   <!-- 目标脱水量(L) -->
                                   {{aimTSL}}
                                 </template>
-                                <template v-else> {{patientInfo.actuallyClliang}}</template>
+                                <template v-else>
+                                    <span v-if="configData.isHiddenActuallyClliang" >/</span>
+                                    <span v-else>{{patientInfo.actuallyClliang}}</span>
+                                 </template>
                                   <!-- 实际超滤量(L) -->
                                  
                               </template>
@@ -349,6 +352,7 @@
 const clockNum=ref(60)
 const timerNum=ref(0)//定时器数
 const aimTSL=ref('')// 目标脱水量,
+const actuallyClliang=ref('') //实际超滤量
 const gao_ya=ref("")//高压
 const di_ya=ref("")//低压
 const  mai_bu=ref("")//脉搏,
@@ -461,6 +465,7 @@
       })
     clockNum.value = patientInfoStore().viewNumber
     aimTSL.value = ''
+    
     gao_ya.value = ''
     di_ya.value = ''
     mai_bu.value = ''

--
Gitblit v1.8.0