mooho-base-admin-plus 2.10.42 → 2.10.43

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.42",
4
+ "version": "2.10.43",
5
5
  "author": "jinyifan <jinyifan@mooho.com.cn>",
6
6
  "license": "MIT",
7
7
  "private": false,
@@ -90,14 +90,14 @@
90
90
  :parent-data="data"
91
91
  @on-change="(row, sender, selected) => onDataChange(column, null, row, sender, selected)"
92
92
  >
93
- <template #filterCommand>
93
+ <template #top>
94
94
  <!--
95
95
  @slot 内嵌表格筛选栏按钮
96
96
  @binding {object} table 表格对象
97
97
  @binding {object} tableColumn 表格列对象
98
98
  @binding {string} tableCode 表格列代码
99
99
  -->
100
- <slot name="excelTableFilterCommand" :tableColumn="column" :tableCode="column.code"></slot>
100
+ <slot name="excelTableTop" :tableColumn="column" :tableCode="column.code"></slot>
101
101
  </template>
102
102
  </view-table-excel>
103
103
  </div>
@@ -634,14 +634,8 @@
634
634
  let column = this.columns[j];
635
635
  let value = this.parseData(row, column.code);
636
636
 
637
- if (column.slot != 'normal') {
638
- continue;
639
- }
640
-
641
637
  // 不显示的不验证
642
- if (row._isShow && row._isShow[column.code] == false) {
643
- continue;
644
- } else if (column.isShow == false) {
638
+ if (column.isShow == false) {
645
639
  continue;
646
640
  }
647
641