2020-08-01 00:41:54 +08:00
|
|
|
|
// const Cookie = require('js-cookie')
|
2020-07-03 14:43:14 +08:00
|
|
|
|
export default function ({app, $axios, store, redirect}) {
|
|
|
|
|
$axios.onRequest(config => {
|
2020-08-01 00:41:54 +08:00
|
|
|
|
let token = store.state.oauth?.accessToken;
|
|
|
|
|
if (token) {
|
|
|
|
|
if (!(config.url.indexOf('console') > -1)) {
|
|
|
|
|
config.headers['Authorization'] = store.state.oauth?.accessToken
|
|
|
|
|
}
|
2020-07-03 14:43:14 +08:00
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
$axios.onResponse(response => {
|
|
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
|
//返回数据逻辑处理 比如:error_code错误处理
|
|
|
|
|
let message;
|
|
|
|
|
if (typeof (response.data.data) !== 'undefined') {
|
|
|
|
|
message = response.data.data.message
|
|
|
|
|
} else if (typeof (response.data) !== 'undefined') {
|
|
|
|
|
message = response.data.message
|
|
|
|
|
}
|
|
|
|
|
if (response.data.success) {
|
|
|
|
|
resolve(response.data);
|
|
|
|
|
} else {
|
2020-08-01 00:41:54 +08:00
|
|
|
|
if (response.data.code === '0') {
|
2020-07-03 14:43:14 +08:00
|
|
|
|
app.$message(message);
|
2020-08-01 00:41:54 +08:00
|
|
|
|
} else if (response.data.code === '401') {
|
|
|
|
|
// Cookie.remove('auth')
|
|
|
|
|
store.commit('setAuth', null);
|
|
|
|
|
} else if (response.data.code === '402') {
|
|
|
|
|
// Cookie.remove('auth')
|
|
|
|
|
store.commit('setAuth', null);
|
|
|
|
|
} else if (response.data.code === '404') {
|
2020-07-03 14:43:14 +08:00
|
|
|
|
app.$message('操作失败,请稍后再试......')
|
2020-08-01 00:41:54 +08:00
|
|
|
|
} else if (response.data.code === '500') {
|
2020-07-03 14:43:14 +08:00
|
|
|
|
app.$message('服务器正在开小差,请稍后再试......')
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
reject(response);
|
|
|
|
|
})
|
|
|
|
|
});
|
|
|
|
|
$axios.onError(error => {
|
|
|
|
|
const code = parseInt(error.response && error.response.status)
|
|
|
|
|
if (code === 400) {
|
2020-08-01 00:41:54 +08:00
|
|
|
|
redirect('/400');
|
2020-07-03 14:43:14 +08:00
|
|
|
|
} else {
|
2020-08-01 00:41:54 +08:00
|
|
|
|
console.log(error.data);
|
2020-07-03 14:43:14 +08:00
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
}
|