优化系统提示,修改单点登陆bug

This commit is contained in:
Air 2025-04-03 15:54:28 +08:00
parent e13fe892f8
commit 93e3eab6bf

View File

@ -11,15 +11,15 @@ type TAxiosOption = {
//记得修改上传路径/api/common/upload
const baseURL = 'http://yfyd.hschool.com.cn' // 设置基础URL前缀
//const baseURL="http://127.0.0.1";
// 导出baseURL使其可以在其他页面使用
export { baseURL };
const config: TAxiosOption = {
timeout: 5000,
baseURL: baseURL,
headers:{
'content-type':'application/x-www-form-urlencoded'
headers: {
'content-type': 'application/x-www-form-urlencoded'
}
}
@ -34,7 +34,7 @@ class Http {
if (userInfoStore.token) {
(config.headers as AxiosRequestHeaders).token = userInfoStore.token as string
} else {
if(router.currentRoute.value.path!=='/login') {
if (router.currentRoute.value.path !== '/login') {
router.push('/login');
}
}
@ -45,20 +45,17 @@ class Http {
/* 响应拦截 */
this.service.interceptors.response.use((response: AxiosResponse<any>) => {
if (response.data.code == 99998) {
layer.msg('会话超时, 请重新登录!', { icon: 2 });
router.push('/login');
return;
}
switch (response.data.code) {
case 1:
return response.data;
case 500:
return response.data;
case 99998:
layer.confirm(
'会话超时, 请重新登录',
{ icon : 2, yes: function(){
router.push('/login');
layer.closeAll()
}});
return response.data;
default:
case 0:
return response.data;
}
}, error => {