You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
70 lines
1.8 KiB
JavaScript
70 lines
1.8 KiB
JavaScript
import axios from 'axios';
|
|
import { Message, MessageBox } from 'element-ui';
|
|
import { delItem } from '@/utils/storage';
|
|
|
|
axios.defaults.baseURL = process.env.BASE_API
|
|
// axios.defaults.baseURL = 'http://10.108.12.23:8080' // 德明本地
|
|
// axios.defaults.baseURL = "http://haitongnla.test.anji-plus.com"
|
|
// axios.defaults.baseURL = "http://10.108.26.163:8080"
|
|
|
|
const service = axios.create({
|
|
withCredentials: true,
|
|
timeout: 60000,
|
|
headers: {
|
|
'Content-Type': 'multipart/form-data'
|
|
}
|
|
})
|
|
|
|
// response interceptor
|
|
service.interceptors.response.use(
|
|
response => {
|
|
const res = response.data;
|
|
if (res.repCode == '0000') {
|
|
return res
|
|
}
|
|
else if (res.repCode == '0024') {
|
|
|
|
//登录超时或被登出,弹确认框,用户确认后,跳转到登录页面
|
|
MessageBox({
|
|
message: "当前登录已失效或异地登录,请重新登录",
|
|
type: 'error',
|
|
duration: 3 * 1000,
|
|
}).then(() => {
|
|
console.log(1)
|
|
sessionStorage.clear();
|
|
localStorage.clear();
|
|
// location.reload();
|
|
window.location.href = "/";
|
|
}).catch(err => {
|
|
console.log(2)
|
|
})
|
|
}else if(res.repCode == "3100" || res.repCode == "3101"){
|
|
return res;
|
|
}
|
|
else {
|
|
Message({
|
|
message: res.repMsg,
|
|
type: 'error',
|
|
duration: 3 * 1000
|
|
})
|
|
return res;
|
|
}
|
|
},
|
|
error => {
|
|
var errorStatus = error.response.status;
|
|
var errorData = error.response.data;
|
|
var messageTxt = "";
|
|
if (errorStatus != 200) {
|
|
messageTxt = "服务器内部错误,请联系管理员";
|
|
} else {
|
|
messageTxt = '失败原因:' + errorData.repCode + '--' + errorData.repMsg;
|
|
}
|
|
Message({
|
|
message: messageTxt,
|
|
type: 'error',
|
|
duration: 5 * 1000
|
|
})
|
|
}
|
|
)
|
|
|
|
export default service |