mooho-base-admin-plus 2.10.12 → 2.10.13

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": "2.10.12",
4
+ "version": "2.10.13",
5
5
  "author": "jinyifan <jinyifan@mooho.com.cn>",
6
6
  "license": "MIT",
7
7
  "private": false,
@@ -833,6 +833,12 @@
833
833
  }
834
834
  }
835
835
 
836
+ // 必填表格增加一行
837
+ let tables = this.columns.filter(item => item.controlType == 'Table' && item.isRequired);
838
+ for (let column of tables) {
839
+ this.$refs['table_' + column.code][0].addNew();
840
+ }
841
+
836
842
  this.clearValidate();
837
843
  },
838
844
  /**