mooho-base-admin-plus 2.10.33 → 2.10.34

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.33",
4
+ "version": "2.10.34",
5
5
  "author": "jinyifan <jinyifan@mooho.com.cn>",
6
6
  "license": "MIT",
7
7
  "private": false,
@@ -112,7 +112,13 @@
112
112
  :prop="column.code"
113
113
  :key="column.code"
114
114
  :rules="getRules(column)"
115
- v-if="column.controlType !== 'Placeholder' && column.controlType !== 'Title' && column.controlType !== 'Table' && column.controlType !== 'List'"
115
+ v-if="
116
+ column.controlType !== 'Placeholder' &&
117
+ column.controlType !== 'Title' &&
118
+ column.controlType !== 'Table' &&
119
+ column.controlType !== 'ExcelTable' &&
120
+ column.controlType !== 'List'
121
+ "
116
122
  >
117
123
  <template v-if="column.controlType === 'Custom'">
118
124
  <!--
@@ -765,7 +771,7 @@
765
771
  reset() {
766
772
  // 清空表格控件数据;
767
773
  this.columns.forEach(column => {
768
- if (column.controlType == 'Table') {
774
+ if (column.controlType == 'Table' || column.controlType == 'ExcelTable') {
769
775
  this.$refs['table_' + column.code][0].loadData([]);
770
776
  }
771
777
  });