Axios 下载 Blob
getBlob(url, param, type) { return service( { method: 'get', url, headers: { 'Content-Type': type === 'form' ? 'application/x-www-form-urlencoded' : 'application/json' }, params: param, responseType: 'blob', } ) },
设置响应体类型 responseType: 'blob',