fix: 重置成功登录流程后的认证异常标志

- 在 actions.js 中添加逻辑,确保在成功登录后重置 ajaxAuthException 状态
- 优化用户认证体验,避免异常状态影响后续操作
This commit is contained in:
kuaifan 2025-09-23 14:41:46 +08:00
parent 5fd2505a33
commit acc437bf2d

View File

@ -1096,6 +1096,9 @@ export default {
// readCache
await dispatch("handleReadCache")
// Reset auth exception flag after successful login flow
state.ajaxAuthException = null
resolve()
});
},