fix(接口定义): 修复复制缺陷

This commit is contained in:
fit2-zhao 2020-12-15 10:39:26 +08:00
parent a8807ec2c6
commit 0f143ecc98
1 changed files with 1 additions and 1 deletions

View File

@ -186,7 +186,7 @@
copyRow(row) {
let obj = {};
Object.assign(obj, row);
row.id = getUUID();
obj.id = getUUID();
this.request.hashTree.push(obj);
this.reload();
},