修复前端通用导出方法参数传值请求方式问题
parent
9277d7173d
commit
15a4a5350d
|
@ -89,6 +89,9 @@ export function download(url, params, filename) {
|
|||
transformRequest: [(params) => {
|
||||
return tansParams(params)
|
||||
}],
|
||||
headers: {
|
||||
'Content-Type': 'application/x-www-form-urlencoded'
|
||||
},
|
||||
responseType: 'blob'
|
||||
}).then((data) => {
|
||||
const content = data
|
||||
|
|
Loading…
Reference in New Issue