fix(系统设置): LDAP用户登录后刷新页面掉线

--bug=1018387 --user=李玉号
【系统设置】LDAP用户首次登录系统失败,再次登录成,但是页面显示需要优化
https://www.tapd.cn/55049933/s/1267896
This commit is contained in:
shiziyuan9527 2022-10-19 18:16:17 +08:00 committed by lyh
parent ae23e35fb2
commit f43b2f473a
1 changed files with 4 additions and 0 deletions

View File

@ -83,6 +83,10 @@ export default {
resolve(res)
})
.catch((res) => {
// 防止快速刷新页面时,请求中止导致的掉线问题
if (res && res.code === 'ECONNABORTED') {
return;
}
clearSessionStorage()
reject(res)
})