123456789101112131415161718192021 |
- /**
- * Created by lishihao on 2025/1/23.
- * 报表数据导出为文件
- * 包括配置、报表树、报表模板、指标
- */
- let reportDataOutputHelper = {
- outPutFile: async function () {
- CommonAjax.postEx(
- "report_tpl_api/getAllBackupData",
- {},
- 200000,
- true,
- function (result) {
- // 下载文件
- window.open(result);
- }
- );
- return [];
- },
- };
|