mooho-base-admin-plus 0.4.61 → 0.4.62

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "mooho-base-admin-plus",
3
3
  "description": "MOOHO basic framework for admin by Vue3",
4
- "version": "0.4.61",
4
+ "version": "0.4.62",
5
5
  "author": "jinyifan <jinyifan@mooho.com.cn>",
6
6
  "dotnetVersion": "1.4.0",
7
7
  "license": "MIT",
@@ -2358,6 +2358,10 @@
2358
2358
  data.splice(index, 1);
2359
2359
  data.splice(index - 1, 0, row);
2360
2360
 
2361
+ for (let item of data) {
2362
+ delete item.id;
2363
+ }
2364
+
2361
2365
  this.$refs.table.loadData(data);
2362
2366
  }
2363
2367
  },
@@ -2368,6 +2372,10 @@
2368
2372
  data.splice(index, 1);
2369
2373
  data.splice(index + 1, 0, row);
2370
2374
 
2375
+ for (let item of data) {
2376
+ delete item.id;
2377
+ }
2378
+
2371
2379
  this.$refs.table.loadData(data);
2372
2380
  }
2373
2381
  }