Explorar el Código

处理个人数据的试卷导出

huangtao hace 3 años
padre
commit
253c2b0252
Se han modificado 1 ficheros con 9 adiciones y 12 borrados
  1. 9 12
      src/views/count/personDataDetail.vue

+ 9 - 12
src/views/count/personDataDetail.vue

@@ -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();