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

master
MrZhai 3 years ago
parent 8f9aab7cdb
commit 2ff3f1f6c4

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

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

Loading…
Cancel
Save