1.修复扫码单据编辑产品信息之后未刷新的问题

fengcang
x_z 3 years ago
parent a91972ba61
commit 6b5e6d922c

@ -581,6 +581,8 @@ export default {
}); });
}, },
closeCodeDialog() { closeCodeDialog() {
//
this.getCodeList();
this.editCodeVisible = false; this.editCodeVisible = false;
this.editOriginCodeVisible = false; this.editOriginCodeVisible = false;
}, },
@ -599,7 +601,6 @@ export default {
} }
}, },
enterKey(event) { enterKey(event) {
console.log("开始回车");
this.checkSuccess = true; this.checkSuccess = true;
let tQuery = { let tQuery = {
originCode: this.originCode, originCode: this.originCode,

@ -447,7 +447,6 @@ export default {
} }
}, },
addOrders(row) { addOrders(row) {
console.log(row)
this.idQuery.id = ''; this.idQuery.id = '';
this.idQuery.actDate = ''; this.idQuery.actDate = '';
this.idQuery.corpOrderId = ''; this.idQuery.corpOrderId = '';
@ -491,11 +490,9 @@ export default {
}); });
}, },
handleSelectionChange(val) { handleSelectionChange(val) {
console.log(val);
this.multipleSelection = val; this.multipleSelection = val;
}, },
selectUnit(row) { selectUnit(row) {
console.log(row.id);
this.unitUpdateQuery.id = this.curIndex; this.unitUpdateQuery.id = this.curIndex;
this.unitUpdateQuery.fromCorp = row.name; this.unitUpdateQuery.fromCorp = row.name;
this.unitUpdateQuery.fromCorpId = row.unitid; this.unitUpdateQuery.fromCorpId = row.unitid;
@ -642,7 +639,6 @@ export default {
var corpOrderId = mOrder.remark; var corpOrderId = mOrder.remark;
this.errorDetail = mOrder.remark; this.errorDetail = mOrder.remark;
console.log(corpOrderId + " " + mOrder + " " + mOrder.remark);
this.dialogVisible = true; this.dialogVisible = true;
}, },

@ -139,7 +139,6 @@ export default {
} else { } else {
saveCode(this.editData) saveCode(this.editData)
.then((response) => { .then((response) => {
console.log(response)
if (response.code === 20000) { if (response.code === 20000) {
this.$message.success("提交成功"); this.$message.success("提交成功");
this.codeDetail = this.editData; this.codeDetail = this.editData;

Loading…
Cancel
Save