|
@@ -8,20 +8,31 @@ import { ElMessage } from 'element-plus'
|
|
|
|
|
|
axios.defaults.baseURL = ''
|
|
|
|
|
|
-axios.interceptors.request.use(config => {
|
|
|
- config.headers.token = getToken()
|
|
|
- // 小程序里用m的页面
|
|
|
- config.headers.Platform = 'pc'
|
|
|
- if (getToken() === null || getToken() === undefined) {
|
|
|
- delete config.headers.token
|
|
|
+axios.interceptors.request.use(
|
|
|
+ config => {
|
|
|
+ config.headers.token = getToken()
|
|
|
+ // 小程序里用m的页面
|
|
|
+ config.headers.Platform = 'pc'
|
|
|
+ if (getToken() === null || getToken() === undefined) {
|
|
|
+ delete config.headers.token
|
|
|
+ }
|
|
|
+ return config
|
|
|
+ },
|
|
|
+ err => {
|
|
|
+ return Promise.reject(err)
|
|
|
}
|
|
|
- return config
|
|
|
-}, err => {
|
|
|
- return Promise.reject(err)
|
|
|
-})
|
|
|
+)
|
|
|
|
|
|
// insurance 保险 502 503 504时兜底的
|
|
|
-function fetch (url = '', params = {}, method = 'get', contentType = 'form', header = {}, insurance, timeout = 15000) {
|
|
|
+function fetch(
|
|
|
+ url = '',
|
|
|
+ params = {},
|
|
|
+ method = 'get',
|
|
|
+ contentType = 'form',
|
|
|
+ header = {},
|
|
|
+ insurance,
|
|
|
+ timeout = 15000
|
|
|
+) {
|
|
|
contentType === 'form' && (contentType = 'application/x-www-form-urlencoded')
|
|
|
contentType === 'json' && (contentType = 'application/json')
|
|
|
contentType === 'file' && (contentType = 'multipart/form-data')
|
|
@@ -47,14 +58,11 @@ function fetch (url = '', params = {}, method = 'get', contentType = 'form', hea
|
|
|
...header
|
|
|
}
|
|
|
}
|
|
|
- const success = (response) => {
|
|
|
- const {
|
|
|
- status,
|
|
|
- data = {},
|
|
|
- statusText
|
|
|
- } = response
|
|
|
+ const success = response => {
|
|
|
+ const { status, data = {}, statusText } = response
|
|
|
if (status >= 200 && status <= 401) {
|
|
|
- if (data.code === 401) { // 未登录c
|
|
|
+ if (data.code === 401) {
|
|
|
+ // 未登录c
|
|
|
removeToken()
|
|
|
router.push(`/?redirect=${encodeURIComponent(window.location.href)}`)
|
|
|
reject(new Error('需要登录'))
|
|
@@ -70,22 +78,27 @@ function fetch (url = '', params = {}, method = 'get', contentType = 'form', hea
|
|
|
ElMessage.success(status + '-' + statusText)
|
|
|
}
|
|
|
}
|
|
|
- axios(requestParams).then(success).catch((err) => {
|
|
|
- if (/502|503|504/.test(err.message) || (err + '').indexOf('timeout') > -1) {
|
|
|
- if (insurance) {
|
|
|
- resolve(insurance)
|
|
|
- return
|
|
|
- }
|
|
|
- let msg = '系统繁忙,正在为您排队中,请稍后再试'
|
|
|
- if (window.location.href.indexOf('/zu') > -1) {
|
|
|
- msg += ` ${err.message}`
|
|
|
+ axios(requestParams)
|
|
|
+ .then(success)
|
|
|
+ .catch(err => {
|
|
|
+ if (
|
|
|
+ /502|503|504/.test(err.message) ||
|
|
|
+ (err + '').indexOf('timeout') > -1
|
|
|
+ ) {
|
|
|
+ if (insurance) {
|
|
|
+ resolve(insurance)
|
|
|
+ return
|
|
|
+ }
|
|
|
+ let msg = '系统繁忙,正在为您排队中,请稍后再试'
|
|
|
+ if (window.location.href.indexOf('/zu') > -1) {
|
|
|
+ msg += ` ${err.message}`
|
|
|
+ }
|
|
|
+ ElMessage.error(msg)
|
|
|
+ } else {
|
|
|
+ resolve(err.data)
|
|
|
+ // ElMessage.error(err.data.error_description ? err.data.error_description : '网络异常,请点击重试')
|
|
|
}
|
|
|
- ElMessage.error(msg)
|
|
|
- } else {
|
|
|
- resolve(err.data)
|
|
|
- // ElMessage.error(err.data.error_description ? err.data.error_description : '网络异常,请点击重试')
|
|
|
- }
|
|
|
- })
|
|
|
+ })
|
|
|
})
|
|
|
}
|
|
|
|