feat: 登录后是否自动跳转至首页的配置项

This commit is contained in:
xiaozzzi 2024-02-06 22:55:30 +08:00
parent 18615482d4
commit 540206936f

View File

@ -117,7 +117,7 @@ const login = async () => {
}
logingIn.value = true
await userStore.loginByPassword(formLogin.value.username, formLogin.value.password)
if (configStore.viewStyle.isLoginToHomePage) {
if (userStore.isLogin && configStore.viewStyle.isLoginToHomePage) {
router.push('/home')
}
logingIn.value = false