fix: 资产信息字段显示隐藏根据角色
All checks were successful
构建并部署前端到测试环境 / build-and-deploy (push) Successful in 4m24s

This commit is contained in:
luo
2026-07-13 16:40:35 +08:00
parent 4c0207c6e6
commit 2c8524485b
11 changed files with 382 additions and 34 deletions

View File

@@ -9,7 +9,7 @@ const axiosInstance = axios.create({
baseURL: import.meta.env.DEV ? '' : import.meta.env.VITE_API_URL, // 开发服务器使用代理其他模式使用完整URL
withCredentials: false, // 异步请求携带cookie
transformRequest: [
(data, headers) => {
(data) => {
// 如果是 FormData,不进行转换
if (data instanceof FormData) {
return data
@@ -72,6 +72,7 @@ let failedQueue: Array<{
resolve: (value?: any) => void
reject: (reason?: any) => void
}> = [] // 失败队列,存储因 token 过期而失败的请求
let isHandlingAuthExpiry = false
// 处理失败队列
const processQueue = (error: any, token: string | null = null) => {
@@ -222,6 +223,11 @@ function handleErrorMessage(
const backendMessage = error.response?.data?.msg
const httpStatus = error.response?.status
// 401 过期类错误由 clearLocalStateAndRedirect 统一提示,避免重复弹出后端报错。
if (httpStatus === 401 || error.response?.data?.code === ApiStatus.unauthorized) {
return
}
// 如果是404错误且未配置显示404错误则不显示任何提示
if (httpStatus === 404 && !show404Error) {
return
@@ -306,9 +312,13 @@ const api = {
// 仅清理本地状态(不调用接口)- 用于401等情况
const clearLocalStateAndRedirect = () => {
if (isHandlingAuthExpiry) return
isHandlingAuthExpiry = true
ElMessage.error('登录已过期,请重新登录')
setTimeout(() => {
useUserStore().clearLocalState()
isHandlingAuthExpiry = false
}, 1000)
}