不小心点到了

ywj_dev
anthonywj 2 years ago
parent 3937250566
commit 74abd2bb96

@ -143,11 +143,11 @@
<el-dialog
:title="editTitle"
:visible.sync=""
:visible.sync="editCodeVisible"
append-to-body width="70%"
:close-on-click-modal="false"
:close-on-press-escape="false"
v-if=""
v-if="editCodeVisible"
>
<editCodeDialog
editType="2"
@ -205,7 +205,7 @@ export default {
curRow: null,
selectRlVisible: false,
dialogTableVisible: false,
: false,
editCodeVisible: false,
editOriginCodeVisible: false,
fromCorp: null,
}
@ -269,7 +269,7 @@ export default {
editCode(row) {
this.editTitle = "编辑条码";
this.codeDetail = row;
this. = true;
this.editCodeVisible = true;
},
rowStyle({row, rowIndex}) {
@ -333,7 +333,7 @@ export default {
},
closeCodeDialog() {
this. = false;
this.editCodeVisible = false;
this.editOriginCodeVisible = false;
this.refreshPanel();
},

Loading…
Cancel
Save