|
@@ -420,25 +420,22 @@ export default {
|
|
|
that.$_API.INTERFACE_GET_USER_EXAM_FILE_BY_USER,
|
|
|
{ params },
|
|
|
{
|
|
|
- headers: { 'Content-Type': 'application/x-download' },
|
|
|
- responseType: 'blob',
|
|
|
+ // headers: { 'Content-Type': 'application/x-download' },
|
|
|
+ // responseType: 'blob',
|
|
|
+ responseType: 'arraybuffer',
|
|
|
}
|
|
|
)
|
|
|
.then((res) => {
|
|
|
if (res.data) {
|
|
|
- // const link = document.createElement('a');
|
|
|
- // link.style.display = 'none';
|
|
|
- // link.href = URL.createObjectURL(res.data);
|
|
|
- // let fileName = `试卷_${record.examName}.xls`;
|
|
|
- // link.setAttribute('download', fileName);
|
|
|
- // document.body.appendChild(link);
|
|
|
- // link.click();
|
|
|
- // document.body.removeChild(link);
|
|
|
+ let blob = new Blob([res.data], {
|
|
|
+ type: 'application/vnd.ms-excel',
|
|
|
+ });
|
|
|
+ // let objectUrl = URL.createObjectURL(blob);
|
|
|
+ // window.location.href = objectUrl;
|
|
|
const link = document.createElement('a');
|
|
|
link.style.display = 'none';
|
|
|
- link.href = URL.createObjectURL(res.data);
|
|
|
+ link.href = URL.createObjectURL(blob);
|
|
|
let fileName = `试卷_${record.examName}.xls`;
|
|
|
- // let fileName = `试卷_名字.xls`;
|
|
|
link.setAttribute('download', fileName);
|
|
|
document.body.appendChild(link);
|
|
|
link.click();
|