|
@@ -96024,11 +96024,19 @@ define(['exports'], function (exports) { 'use strict';
|
|
|
});
|
|
|
}
|
|
|
}
|
|
|
- }, {
|
|
|
- text: '大批量导出(需要安装客户端)',
|
|
|
+ },
|
|
|
+ '-',
|
|
|
+ {
|
|
|
+ text: '大批量导出 (会占用大量服务器资源,需要客户端支持,请慎用!)',
|
|
|
iconCls: 'x-fa fa-download',
|
|
|
listeners: {
|
|
|
- click: function (sender, value) { return grid.exportBigExcelClick(); }
|
|
|
+ click: function (sender, value) {
|
|
|
+ // @ts-ignore
|
|
|
+ YvanUI.confirm('大批量数据导出会占用大量服务器资源和带宽资源,您真的要导出吗?')
|
|
|
+ .then(function (res) {
|
|
|
+ grid.exportBigExcelClick();
|
|
|
+ });
|
|
|
+ }
|
|
|
}
|
|
|
}]
|
|
|
});
|