fix: 解决密码过期后重定向到登录页的问题 (#990)

This commit is contained in:
ssongliu 2023-05-10 17:12:18 +08:00 committed by GitHub
parent 740b4c52d2
commit ab523b6879
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -50,7 +50,6 @@ class RequestHttp {
return Promise.reject(data);
}
if (data.code == ResultEnum.EXPIRED) {
globalStore.setLogStatus(false);
router.push({ name: 'Expired' });
return data;
}