fix:任务分解后的修改问题

This commit is contained in:
shijing 2024-08-16 10:21:45 +08:00
parent c08dc1b2d3
commit 329bccb628
1 changed files with 3 additions and 1 deletions

View File

@ -169,7 +169,9 @@ export default {
return this;
},
table_edit(row) {
this.form = Object.assign(row, this.form);
this.form = {};
let item = row;
this.form = Object.assign(item, this.form);
this.dialogVisible = true;
},
updateMtaskSubmit() {