This commit is contained in:
2026-03-21 14:33:00 +08:00
parent 68da50984c
commit 47a9eaebcd
6 changed files with 24 additions and 29 deletions

View File

@@ -862,7 +862,7 @@ const handleExport = async () => {
const response = await apiCallApi.exportAdminApiCalls(params)
// 创建下载链接
const blob = new Blob([response], {
const blob = new Blob([response.data], {
type: exportOptions.format === 'excel'
? 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'
: 'text/csv;charset=utf-8'