fix: 修复刷新令牌缺失后不弹登录框

刷新令牌缺失时不再标记为刷新中,避免刷新状态永久卡住,导致后续访问订单等登录接口时不弹出登录框。
master
YunaiV 2026-05-31 10:58:37 +08:00
parent 6587fb15c6
commit 164551a22e
1 changed files with 1 additions and 0 deletions

View File

@ -236,6 +236,7 @@ const refreshToken = async (config) => {
return handleAuthorized();
}
// 只有真正发起刷新时才标记刷新中,避免无刷新令牌时状态一直卡住,后续 401 不再弹登录框
// https://github.com/yudaocode/yudao-mall-uniapp/issues/38
isRefreshToken = true;
// 2. 进行刷新访问令牌
try {