|
@@ -1,9 +1,10 @@
|
|
|
/**
|
|
|
* Created by ebi on 2017/5/11.
|
|
|
*/
|
|
|
-import axios from 'axios'
|
|
|
+import axios from './axios.js'
|
|
|
import router from '../router'
|
|
|
import { removeToken, getToken } from '../utils/auth'
|
|
|
+import { ElMessage } from 'element-plus'
|
|
|
|
|
|
axios.defaults.baseURL = ''
|
|
|
|
|
@@ -20,7 +21,7 @@ axios.interceptors.request.use(config => {
|
|
|
})
|
|
|
|
|
|
// insurance 保险 502 503 504时兜底的
|
|
|
-function fetch (url = '', params = {}, method = 'get', contentType = 'form', 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')
|
|
@@ -29,7 +30,7 @@ function fetch (url = '', params = {}, method = 'get', contentType = 'form', ins
|
|
|
query.push(k + '=' + params[k])
|
|
|
}
|
|
|
let qs = query.join('&')
|
|
|
- if (method.toLowerCase() === 'get' && query.length > 0) {
|
|
|
+ if (contentType === 'application/x-www-form-urlencoded' && query.length > 0) {
|
|
|
url += (url.indexOf('?') < 0 ? '?' : '&') + qs
|
|
|
}
|
|
|
if (contentType !== 'application/x-www-form-urlencoded' && method !== 'get') {
|
|
@@ -42,7 +43,8 @@ function fetch (url = '', params = {}, method = 'get', contentType = 'form', ins
|
|
|
url: '/api' + url,
|
|
|
data: qs,
|
|
|
headers: {
|
|
|
- 'Content-Type': contentType
|
|
|
+ 'Content-Type': contentType,
|
|
|
+ ...header
|
|
|
}
|
|
|
}
|
|
|
const success = (response) => {
|
|
@@ -54,17 +56,18 @@ function fetch (url = '', params = {}, method = 'get', contentType = 'form', ins
|
|
|
if (status >= 200 && status <= 401) {
|
|
|
if (data.code === 401) { // 未登录c
|
|
|
removeToken()
|
|
|
- clean()
|
|
|
router.push(`/?redirect=${encodeURIComponent(window.location.href)}`)
|
|
|
reject(new Error('需要登录'))
|
|
|
- Message.error('登录过期,请重新登录')
|
|
|
+ ElMessage.error('登录过期,请重新登录')
|
|
|
return
|
|
|
}
|
|
|
resolve(data)
|
|
|
} else if (status === 500) {
|
|
|
+ resolve(data)
|
|
|
router.push('/500')
|
|
|
} else {
|
|
|
- Message.success(status + '-' + statusText)
|
|
|
+ resolve(data)
|
|
|
+ ElMessage.success(status + '-' + statusText)
|
|
|
}
|
|
|
}
|
|
|
axios(requestParams).then(success).catch((err) => {
|
|
@@ -77,9 +80,10 @@ function fetch (url = '', params = {}, method = 'get', contentType = 'form', ins
|
|
|
if (window.location.href.indexOf('/zu') > -1) {
|
|
|
msg += ` ${err.message}`
|
|
|
}
|
|
|
- Message.error(msg)
|
|
|
+ ElMessage.error(msg)
|
|
|
} else {
|
|
|
- Message.error(err.response.data && err.response.data.msg ? err.response.data.msg : '网络异常,请点击重试')
|
|
|
+ resolve(err.data)
|
|
|
+ // ElMessage.error(err.data.error_description ? err.data.error_description : '网络异常,请点击重试')
|
|
|
}
|
|
|
})
|
|
|
})
|