| | |
| | | withCredentials: true, |
| | | timeout: 30000, |
| | | data: params, |
| | | headers: { 'Content-Type': 'multipart/form-data', 'request-ajax': true } |
| | | responseType: 'blob',//关键 |
| | | headers: {'Content-Type': 'application/vnd.ms-excel',}//类型修改为excel |
| | | } |
| | | return request(false, query) |
| | | } |
| | | |
| | | export const down = function (url, params) { |
| | | const query = { |
| | | baseURL: process.env.VUE_APP_URL, |
| | | url: url, |
| | | method: 'get', |
| | | withCredentials: true, |
| | | timeout: 30000, |
| | | data: params, |
| | | headers: { responseType: 'blob', 'Content-Type': 'multipart/form-data', 'request-ajax': true} |
| | | } |
| | | return request(false, query) |
| | | } |
| | | export { |
| | | post, |
| | | postWithLoadTip, |
| | | postWithOutLoadTip, |
| | | get, |
| | | form |
| | | form, |
| | | |
| | | } |