cloud-web-corejs 1.0.54-dev.271 → 1.0.54-dev.272
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 +1 -1
- package/src/components/excelExport/index.vue +2 -2
- package/src/components/table/index.js +2 -0
- package/src/components/xform/form-render/container-item/data-table-mixin.js +2403 -1
- package/src/views/bd/setting/push_data_h/edit.vue +5 -3
- package/src/views/bd/setting/push_data_h/list.vue +2 -2
package/package.json
CHANGED
@@ -18,11 +18,11 @@
|
|
18
18
|
:modal-append-to-body="false"
|
19
19
|
@close="dialogClose2"
|
20
20
|
>
|
21
|
-
<el-button class="isFullIcon" @click="handleMinimize">
|
21
|
+
<!-- <el-button class="isFullIcon" @click="handleMinimize">
|
22
22
|
<el-tooltip effect="dark" content="缩小" placement="top">
|
23
23
|
<i class="el-icon-minus"></i>
|
24
24
|
</el-tooltip>
|
25
|
-
</el-button>
|
25
|
+
</el-button> -->
|
26
26
|
<div class="export-box">
|
27
27
|
<div class="tips">{{ $t2('导出中,请勿关闭当前窗口', 'components.excelExport.tip') }}</div>
|
28
28
|
<el-progress :text-inside="true" :stroke-width="26" :percentage="percentageNum"
|
@@ -948,10 +948,12 @@ function customHandle(option) {
|
|
948
948
|
addTableJson(that, $grid, tableName);
|
949
949
|
}, 200);
|
950
950
|
}
|
951
|
+
|
951
952
|
if (option && option.$event && option.$event.preventDefault) {
|
952
953
|
option.$event.preventDefault(); // 取消事件的默认行为
|
953
954
|
}
|
954
955
|
}
|
956
|
+
originOption.customCallback && originOption.customCallback(option);
|
955
957
|
}
|
956
958
|
|
957
959
|
function changeSelectCount(checked) {
|