fix: 修复前端登录错误

This commit is contained in:
tbphp
2025-07-15 22:01:26 +08:00
parent 06525f3857
commit d3f0861de4
4 changed files with 30 additions and 30 deletions

View File

@@ -45,9 +45,11 @@ http.interceptors.response.use(
// The request was made and the server responded with a status code
// that falls out of the range of 2xx
if (error.response.status === 401) {
const { logout } = useAuthService();
logout();
window.location.href = "/login";
if (window.location.pathname !== "/login") {
const { logout } = useAuthService();
logout();
window.location.href = "/login";
}
}
window.$message.error(error.response.data?.message || `请求失败: ${error.response.status}`);
} else if (error.request) {