|
|
|
|
@ -1,33 +1,41 @@
|
|
|
|
|
import axios from 'axios'
|
|
|
|
|
import { MessageBox, Message,Loading } from 'element-ui'
|
|
|
|
|
import {
|
|
|
|
|
MessageBox,
|
|
|
|
|
Message,
|
|
|
|
|
Loading
|
|
|
|
|
} from 'element-ui'
|
|
|
|
|
import store from '@/store'
|
|
|
|
|
import { getToken } from '@/utils/auth'
|
|
|
|
|
import {
|
|
|
|
|
getToken
|
|
|
|
|
} from '@/utils/auth'
|
|
|
|
|
let loading;
|
|
|
|
|
|
|
|
|
|
// create an axios instance
|
|
|
|
|
const service = axios.create({
|
|
|
|
|
baseURL: process.env.VUE_APP_DOMIAN, // url = base url + request url
|
|
|
|
|
// withCredentials: true, // send cookies when cross-domain requests
|
|
|
|
|
timeout: 5000 // request timeout
|
|
|
|
|
timeout: 500000 // request timeout
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
// request interceptor
|
|
|
|
|
service.interceptors.request.use(
|
|
|
|
|
config => {
|
|
|
|
|
|
|
|
|
|
if (!config.noloading) {
|
|
|
|
|
// do something before request is sent
|
|
|
|
|
loading = Loading.service({
|
|
|
|
|
lock:true,
|
|
|
|
|
background:"rgba(0,0,0,0.4)",
|
|
|
|
|
text:"正在加载中..."
|
|
|
|
|
lock: true,
|
|
|
|
|
background: "rgba(0,0,0,0.4)",
|
|
|
|
|
text: "正在加载中..."
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
if (store.getters.token) {
|
|
|
|
|
// let each request carry token
|
|
|
|
|
// ['X-Token'] is a custom headers key
|
|
|
|
|
// please modify it according to the actual situation
|
|
|
|
|
//config.headers['X-Token'] = getToken();
|
|
|
|
|
|
|
|
|
|
config.headers['Authorization'] ="Bearer "+getToken()
|
|
|
|
|
config.headers['Authorization'] = "Bearer " + getToken()
|
|
|
|
|
}
|
|
|
|
|
return config
|
|
|
|
|
},
|
|
|
|
|
@ -51,7 +59,9 @@ service.interceptors.response.use(
|
|
|
|
|
* You can also judge the status by HTTP Status Code
|
|
|
|
|
*/
|
|
|
|
|
response => {
|
|
|
|
|
if (loading) {
|
|
|
|
|
loading.close()
|
|
|
|
|
}
|
|
|
|
|
const res = response.data
|
|
|
|
|
|
|
|
|
|
// if the custom code is not 20000, it is judged as an error.
|
|
|
|
|
@ -65,7 +75,8 @@ service.interceptors.response.use(
|
|
|
|
|
// 50008: Illegal token; 50012: Other clients logged in; 50014: Token expired;
|
|
|
|
|
if (res.errcode === 50008 || res.errcode === 50012 || res.errcode === 50014) {
|
|
|
|
|
// to re-login
|
|
|
|
|
MessageBox.confirm('You have been logged out, you can cancel to stay on this page, or log in again', 'Confirm logout', {
|
|
|
|
|
MessageBox.confirm('You have been logged out, you can cancel to stay on this page, or log in again',
|
|
|
|
|
'Confirm logout', {
|
|
|
|
|
confirmButtonText: 'Re-Login',
|
|
|
|
|
cancelButtonText: 'Cancel',
|
|
|
|
|
type: 'warning'
|
|
|
|
|
@ -81,7 +92,9 @@ service.interceptors.response.use(
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
error => {
|
|
|
|
|
if (loading) {
|
|
|
|
|
loading.close()
|
|
|
|
|
}
|
|
|
|
|
console.log('err' + error) // for debug
|
|
|
|
|
Message({
|
|
|
|
|
message: error.message,
|
|
|
|
|
|