From 5d6c0e614bab737842e402077bee47a9d4e18733 Mon Sep 17 00:00:00 2001
From: chenyc <501753378@qq.com>
Date: 星期五, 14 十一月 2025 14:47:39 +0800
Subject: [PATCH] gx密码输入提示

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

diff --git a/src/views/home/index.vue b/src/views/home/index.vue
index 9c3d061..25ad9c8 100644
--- a/src/views/home/index.vue
+++ b/src/views/home/index.vue
@@ -6,6 +6,7 @@
                 <div class="userCode">透析号:{{patientInfo.patientInfo.patientHemoCode}} </div>
                 <div class="userQRcode">
                     <img
+                        @click="showerwima = true"
                         style=" width: 60px;height: 60px;margin-left: 8%; margin-top: 20px;"
                         referrerpolicy="no-referrer"
                         :src="patientInfo.patientInfo.patientQrcodeUrl"
@@ -67,7 +68,7 @@
                     <div class="tizhong">{{最近体重血压.体重}}</div>
                 </div>
                 <div class="hanzhi">体重(kg)</div>
-                <div class="yinyu">Patient weight data</div>
+                <div class="yinyu">最近透析治疗签到的透前体重</div>
             </div>
             <div class="box">
                 <div class="crainfo">
@@ -78,7 +79,7 @@
                     </div>
                 </div>
                 <div class="hanzhi">血压(mmHg)</div>
-                <div class="yinyu">Patient blood pressure data</div>
+                <div class="yinyu">最近透析治疗签到的透前血压</div>
             </div>
         </div>
         <div class="listInfos">
@@ -124,6 +125,16 @@
             <van-tabbar-item name="xuanjiao" icon="smile-o">宣教</van-tabbar-item>
             <van-tabbar-item name="my" icon="manager">我的</van-tabbar-item>
         </van-tabbar>
+        <van-popup v-model:show="showerwima">
+            <div class="imgcla">
+                <img
+                    preview="1"
+                    style=" width: 350px;height: 350px;"
+                    referrerpolicy="no-referrer"
+                    :src="patientInfo.patientInfo.patientQrcodeUrl"
+                />
+            </div>
+        </van-popup>
     </div>
 </template>
   <script lang="ts" setup>
@@ -140,10 +151,13 @@
     const router=useRouter()
     const userInfo = userInfoStore()
     const active=ref('home')
+    const showerwima=ref(false)
     const tabChang=(index:any)=>{
         if (index==='home'){
             router.push('/')
         } else if (index==='xuanjiao') {
+            Toast('此功能正在开发中,敬请期待')
+            return
             router.push('xuanjiao')
         } else if (index==='my') {
             router.push('my')

--
Gitblit v1.8.0