refactor: 去掉是否登录无用逻辑
This commit is contained in:
parent
dbbac51244
commit
4acb1026b0
|
@ -68,11 +68,7 @@
|
||||||
console.log(error);
|
console.log(error);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
onMounted(async () => {
|
onMounted(() => {
|
||||||
const res = await userStore.isLogin();
|
userStore.isLogin();
|
||||||
if (!res) {
|
|
||||||
const router = useRouter();
|
|
||||||
router.push({ name: 'login' });
|
|
||||||
}
|
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
|
@ -103,12 +103,10 @@ const useUserStore = defineStore('user', {
|
||||||
if (appStore.currentOrgId === '') {
|
if (appStore.currentOrgId === '') {
|
||||||
appStore.setCurrentOrgId(res.lastOrganizationId || '');
|
appStore.setCurrentOrgId(res.lastOrganizationId || '');
|
||||||
}
|
}
|
||||||
return true;
|
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
const { t } = useI18n();
|
const { t } = useI18n();
|
||||||
Message.error(t('message.loginExpired'));
|
Message.error(t('message.loginExpired'));
|
||||||
this.logoutCallBack();
|
this.logoutCallBack();
|
||||||
return false;
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue