diff --git a/src/api/internal/httpClient.ts b/src/api/internal/httpClient.ts index 2842eca..0b29793 100644 --- a/src/api/internal/httpClient.ts +++ b/src/api/internal/httpClient.ts @@ -55,8 +55,10 @@ export class HttpClient { GoLogin(); } else if (status === 403) { // 跳转到无权限页面 + GoLogin(); } else if (status === 500) { // 跳转到500异常页面 + GoLogin(); } return Promise.reject(error.response); }