Merge pull request #9002 from dataease/pr@dev_export_data

fix: 数据导出中心
This commit is contained in:
taojinlong 2024-04-09 10:55:23 +08:00 committed by GitHub
commit 81b0a9f1d5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 3 deletions

View File

@ -172,7 +172,7 @@ public class PanelGroupController {
@PostMapping("/innerExportDetails")
@DePermissionProxy(value = "proxy")
@I18n
public void innerExportDetails(@RequestBody PanelViewDetailsRequest request, HttpServletResponse response) throws IOException {
public void innerExportDetails(@RequestBody PanelViewDetailsRequest request) throws IOException {
exportCenterService.addTask(request.getViewId(), "chart", request);
}

View File

@ -265,8 +265,7 @@ export function innerExportDetails(data) {
url: 'panel/group/innerExportDetails',
method: 'post',
data: data,
loading: true,
responseType: 'blob'
loading: true
})
}