ysy 1 年之前
父節點
當前提交
d8df02e4d5
共有 1 個文件被更改,包括 2 次插入1 次删除
  1. 2 1
      src/views/material/BOMmanage/qualityTesting/inspectionClassify/index.vue

+ 2 - 1
src/views/material/BOMmanage/qualityTesting/inspectionClassify/index.vue

@@ -2,6 +2,7 @@
   <el-dialog
     title="质检"
     :visible.sync="visible"
+      v-if="visible"
     :before-close="handleClose"
     :close-on-click-modal="false"
     :close-on-press-escape="false"
@@ -274,7 +275,7 @@
         this.visible = true;
         this.$nextTick(() => {
           list.forEach((item) => {
-            this.$refs.table &&  this.$refs.table.toggleRowSelection(item, true);
+            this.$refs.table && this.$refs.table.toggleRowSelection(item, true);
           });
         });
       },