axio请求里必须加 responseType: 'blob' 参数,如下 //下载文件 api.download=function(id) { return request({ url: this.baseUrl+'/download/'+id, method: 'get', params: {}, responseType: 'blob' }) } 返回结果里面要做如下处理 .then( res => { let blob = new Blob([res], {type: res.type…