|
|
@@ -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);
|
|
|
});
|
|
|
});
|
|
|
},
|