修改bug

prod
wangwei 2 years ago
parent d5d1960427
commit 8b7d0de7c3

@ -495,6 +495,7 @@ export default {
this.subData.thirdSysFk = data.thirdSysFk; this.subData.thirdSysFk = data.thirdSysFk;
} }
this.subFormVisible = true; this.subFormVisible = true;
localStorage.setItem("code", JSON.stringify(this.subData.code));
}, },
handleSubDel(row) { handleSubDel(row) {
@ -539,7 +540,9 @@ export default {
this.$message.error("分库名称不能为空!"); this.$message.error("分库名称不能为空!");
return; return;
} }
saveSubWarehouse(this.subData, this.subFromName).then((response) => { saveSubWarehouse(this.subData, this.subFromName).then((response) => {
if (response.code == 20000) { if (response.code == 20000) {
let row = { let row = {
code: this.subData.parentId, code: this.subData.parentId,
@ -552,6 +555,7 @@ export default {
this.subFormVisible = false; this.subFormVisible = false;
} }
}).catch(() => { }).catch(() => {
this.subData.code=JSON.parse(localStorage.getItem("code"));
this.subFormVisible = false; this.subFormVisible = false;
}); });
this.resetForm(); this.resetForm();

Loading…
Cancel
Save