|
|
|
@ -39,6 +39,7 @@ service.interceptors.request.use(config => {
|
|
|
|
|
config.url = url;
|
|
|
|
|
}
|
|
|
|
|
if (!isRepeatSubmit && (config.method === 'post' || config.method === 'put')) {
|
|
|
|
|
|
|
|
|
|
const requestObj = {
|
|
|
|
|
url: config.url,
|
|
|
|
|
data: typeof config.data === 'object' ? JSON.stringify(config.data) : config.data,
|
|
|
|
@ -128,8 +129,10 @@ service.interceptors.response.use(res => {
|
|
|
|
|
// 通用下载方法
|
|
|
|
|
export function download(url, params, filename, config) {
|
|
|
|
|
downloadLoadingInstance = Loading.service({ text: "正在下载数据,请稍候", spinner: "el-icon-loading", background: "rgba(0, 0, 0, 0.7)", })
|
|
|
|
|
|
|
|
|
|
return service.post(url, params, {
|
|
|
|
|
transformRequest: [(params) => { return tansParams(params) }],
|
|
|
|
|
transformRequest: [(params) => {
|
|
|
|
|
return Array.isArray(params) ? params : tansParams(params) }],
|
|
|
|
|
headers: { 'Content-Type': 'application/x-www-form-urlencoded' },
|
|
|
|
|
responseType: 'blob',
|
|
|
|
|
...config
|
|
|
|
|