1.修复仓库信息编辑提交后无法刷新数据表格的问题

master
MrZhai 3 years ago
parent 8f9aab7cdb
commit 2ff3f1f6c4

@ -575,10 +575,10 @@ export default {
} }
} }
} else { } else {
const parent = this.node.parent; // const parent = this.node.parent;
const children = parent.data.children || parent.data; // const children = parent.data.children || parent.data;
const index = children.findIndex((d) => d.id === data.id); // const index = children.findIndex((d) => d.id === data.id);
children.splice(index, 1, data); // children.splice(index, 1, data);
} }
// //
this.resetForm(); this.resetForm();

@ -430,6 +430,7 @@ export default {
return false; return false;
} }
this.$message.success("操作成功"); this.$message.success("操作成功");
this.formVisible = false; this.formVisible = false;
if (this.formName !== "edit") { if (this.formName !== "edit") {
if (response.data && response.data.id) { if (response.data && response.data.id) {
@ -444,10 +445,10 @@ export default {
} }
} }
} else { } else {
const parent = this.node.parent; // const parent = this.node.parent;
const children = parent.data.children || parent.data; // const children = parent.data.children || parent.data;
const index = children.findIndex((d) => d.id === data.id); // const index = children.findIndex((d) => d.id === data.id);
children.splice(index, 1, data); // children.splice(index, 1, data);
} }
// //
this.resetForm(); this.resetForm();

Loading…
Cancel
Save