From c62776b21679c54f8e65baeb805b891e962c3eef Mon Sep 17 00:00:00 2001
From: linwenling <3256558519@qq.com>
Date: 星期二, 01 八月 2023 19:45:56 +0800
Subject: [PATCH] 部分行列间隔修改

---
 ruoyi-ui/src/views/doctor/index.vue |   33 +++++++++++++++++----------------
 1 files changed, 17 insertions(+), 16 deletions(-)

diff --git a/ruoyi-ui/src/views/doctor/index.vue b/ruoyi-ui/src/views/doctor/index.vue
index e098f5e..5ca2704 100644
--- a/ruoyi-ui/src/views/doctor/index.vue
+++ b/ruoyi-ui/src/views/doctor/index.vue
@@ -224,22 +224,23 @@
         <el-table-column label="鐢靛瓙鏂囦欢" prop="url" width="160" align="center">
              <template slot-scope="scope" >
                <div  @click="handleCheck(scope.row)">
-               <img
-                 class="el-upload-list__item-thumbnail"
-                 src="../../assets/images/deviceLis.png"
-                 alt=""
-                 style="width: 35px; height: 35px;"
-                 fit="cover"
-                  v-if="scope.row.url !== ','"
-               >
-        <img
-                 class="el-upload-list__item-thumbnail"
-                 src="../../assets/images/deviceA.png"
-                 alt=""
-                 style="width: 35px; height: 35px;"
-                 fit="cover"
-                  v-if="scope.row.url ===',' "
-        ></div>
+                 <img
+                   class="el-upload-list__item-thumbnail"
+                   src="../../assets/images/deviceLis.png"
+                   alt=""
+                   style="width: 35px; height: 35px;"
+                   fit="cover"
+                   v-if="!(scope.row.url === '' || scope.row.url === ',' || scope.row.url === null)"
+                 >
+                 <img
+                   v-else
+                   class="el-upload-list__item-thumbnail"
+                   src="../../assets/images/deviceA.png"
+                   alt=""
+                   style="width: 35px; height: 35px;"
+                   fit="cover"
+
+                 ></div>
              </template>
           </el-table-column>
 

--
Gitblit v1.9.1