dev_forum
杨树林 5 years ago
parent 6df310eda1
commit 8e50879796

@ -3,8 +3,7 @@ import axios from 'axios';
// 导出实习报告批量zip 、xlsx 类型 // 导出实习报告批量zip 、xlsx 类型
export function Internshipreportsy (url,struy,types,stingtype){ export function Internshipreportsy (url,struy,types,stingtype,response){
axios.get((url),{responseType: 'blob'}).then((response) => {
const blob = new Blob([response.data], { type: stingtype }); const blob = new Blob([response.data], { type: stingtype });
const downloadElement = document.createElement('a'); const downloadElement = document.createElement('a');
const href = window.URL.createObjectURL(blob); const href = window.URL.createObjectURL(blob);
@ -15,7 +14,4 @@ export function Internshipreportsy (url,struy,types,stingtype){
downloadElement.click(); downloadElement.click();
document.body.removeChild(downloadElement) ;// 下载完成移除元素 document.body.removeChild(downloadElement) ;// 下载完成移除元素
window.URL.revokeObjectURL(href) // 释放掉blob对象 window.URL.revokeObjectURL(href) // 释放掉blob对象
}).catch((error) => {
console.log(error)
});
} }

@ -1355,11 +1355,11 @@ class Listofworks extends Component {
}else if(response.data.status&&response.data.status===-2){ }else if(response.data.status&&response.data.status===-2){
}else { }else {
if(type === 1){ // if(type === 1){
Internshipreportsy(url,struy,".zip",'application/zip'); // Internshipreportsy(url,struy,".zip",'application/zip');
}else{ // }else{
Internshipreportsy(url,struy,".xlsx",'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'); Internshipreportsy(url,struy,".xlsx",'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',response);
} // }
} }
} }
}).catch((error) => { }).catch((error) => {

Loading…
Cancel
Save