fix(系统设置): LDAP用户登录后刷新页面掉线
--bug=1018387 --user=李玉号 【系统设置】LDAP用户首次登录系统失败,再次登录成,但是页面显示需要优化 https://www.tapd.cn/55049933/s/1267896
This commit is contained in:
parent
ae23e35fb2
commit
f43b2f473a
|
@ -83,6 +83,10 @@ export default {
|
|||
resolve(res)
|
||||
})
|
||||
.catch((res) => {
|
||||
// 防止快速刷新页面时,请求中止导致的掉线问题
|
||||
if (res && res.code === 'ECONNABORTED') {
|
||||
return;
|
||||
}
|
||||
clearSessionStorage()
|
||||
reject(res)
|
||||
})
|
||||
|
|
Loading…
Reference in New Issue