From f5052fa7d4e73c0df5a02a6ad8987f35df42b8f8 Mon Sep 17 00:00:00 2001
From: riku <risaku@163.com>
Date: 星期四, 07 十一月 2024 17:23:50 +0800
Subject: [PATCH] 1. 完成场景报告模块 2. 日报管理模块添加时间范围选择以及word报告生成

---
 src/views/fysp/check/components/CompDevicePhono.vue |    9 +++++----
 1 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/src/views/fysp/check/components/CompDevicePhono.vue b/src/views/fysp/check/components/CompDevicePhono.vue
index 373e97e..d1871fe 100644
--- a/src/views/fysp/check/components/CompDevicePhono.vue
+++ b/src/views/fysp/check/components/CompDevicePhono.vue
@@ -29,7 +29,7 @@
         <el-tab-pane v-for="item in typeList" :label="item.label" :name="item.id"> </el-tab-pane>
       </el-tabs>
       <el-empty v-if="imgObjList.length == 0" description="鏆傛棤璁板綍" />
-      <div class="imgs">
+      <el-scrollbar v-else class="imgs">
         <el-image
           v-for="(img, i) in imgObjList"
           :class="[Boolean(img.isSelect) ? 'selected' : 'noActive', 'image']"
@@ -38,7 +38,7 @@
           lazy
           @click="onSelect(img, i)"
         />
-      </div>
+      </el-scrollbar>
     </div>
   </div>
 </template>
@@ -186,7 +186,7 @@
   } */
 
 .imgs {
-  height: 650px;
+  height: 50vh;
   width: 90%;
   min-height: 100px !important;
   /* border-style:solid;
@@ -255,7 +255,8 @@
   padding: 5px;
 }
 
-.el-dialog__body {
+::v-deep .el-dialog__body {
   height: 60vh;
+  padding: 10px calc(var(--el-dialog-padding-primary) + 10px) !important;
 }
 </style>

--
Gitblit v1.9.3