|
@ -163,12 +163,12 @@ const submitFormSuccess = (response: any) => { |
|
|
if(response.code == 500){ |
|
|
if(response.code == 500){ |
|
|
message.error('导入失败') |
|
|
message.error('导入失败') |
|
|
return; |
|
|
return; |
|
|
}else{ |
|
|
} else if (response.data.errorCount > 0) { |
|
|
message.confirm('文件中有部分数据导入失败,是否下载失败数据?').then(() => { |
|
|
message.confirm('文件中有部分数据导入失败,是否下载失败数据?').then(() => { |
|
|
// download.excel(file, 'file_' + new Date().getTime()) |
|
|
// download.excel(file, 'file_' + new Date().getTime()) |
|
|
// 通过url下载文件 |
|
|
// 通过url下载文件 |
|
|
const downloadElement = document.createElement('a') |
|
|
const downloadElement = document.createElement('a') |
|
|
downloadElement.setAttribute('href','https://sf3-cn.feishucdn.com/obj/ee-appcenter/99cc1467/Feishu-win32_ia32-6.11.16-signed.exe' ) |
|
|
downloadElement.setAttribute('href', import.meta.env.VITE_BASE_URL + import.meta.env.VITE_API_URL + response.data.errorFile ) |
|
|
// 点击下载 |
|
|
// 点击下载 |
|
|
downloadElement.click() |
|
|
downloadElement.click() |
|
|
}) |
|
|
}) |
|
|