@@ -218,7 +218,9 @@ export default {
this.data.push({})
},
handleCopy(record) {
- this.data.push(this.BaseTool.Object.copy(record))
+ const newVal = this.BaseTool.Object.copy(record)
+ delete newVal.id
+ this.data.push(newVal)
handleDelOne(record, i) {
this.data.splice(i, 1)