Browse Source

Merge branch 'feature_20250408_物料发放频次' into uat(dev)

zhujindu 8 months ago
parent
commit
74e5ef0b4d
1 changed files with 19 additions and 4 deletions
  1. 19 4
      src/views/deviceOutside/suishenbangOutstoreVisit.vue

+ 19 - 4
src/views/deviceOutside/suishenbangOutstoreVisit.vue

@@ -128,9 +128,9 @@
       @close="wuliaoTableClose"
       custom-class="wuliaoTable">
       <el-table :data="wuliaoList" border style="width: 100%">
-        <el-table-column label="物料名称" prop="materialDataName" />
-        <el-table-column label="发放时间" prop="issuerTime" />
-        <el-table-column label="发放数量" prop="inventoryNum" />
+        <el-table-column label="物料名称" prop="materialDataName" align="center" />
+        <el-table-column label="发放时间" prop="issuerTime" align="center" />
+        <el-table-column label="发放数量" prop="inventoryNum" width="60" align="center" />
       </el-table>
     </el-dialog>
   </div>
@@ -903,7 +903,7 @@ export default {
   color: #0057ba;
 }
 </style>
-<style>
+<style lang="scss">
 .navBarOverlay .van-nav-bar__left .van-icon {
   color: #8b8b8b;
 }
@@ -923,4 +923,19 @@ export default {
   left: -1000px;
   position: relative;
 }
+.el-dialog__wrapper {
+  z-index: 3333 !important;
+  display: flex;
+  justify-content: center;
+  align-items: center;
+  background: rgba(0, 0, 0, 0.5) !important;
+  .wuliaoTable {
+    .el-dialog__body {
+      padding: 30px 20px !important;
+    }
+    .cell {
+      font-size: 12px;
+    }
+  }
+}
 </style>