不小心点到了

ywj_dev
anthonywj 2 years ago
parent 3937250566
commit 74abd2bb96

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

Loading…
Cancel
Save