下载xlsx文件
async function downloadFile() {
let res = await axios.get(
'http://192.168.90.163:8301/application/excelTemplate/exportExcel?id=1504694990578782210',
{
headers: {
Authorization: 'bearer d790f81a-3f12-426f-af0d-30a262307f30',
},
responseType: 'blob',
},
);
res = res.data;
let a = document.createElement('a');
let url = URL.createObjectURL(res);
a.href = url;
a.setAttribute('download', '模板.xlsx');
a.click();
window.URL.revokeObjectURL(url);
}