这个提交包含在:
朱文强 2023-10-25 16:44:56 +08:00
父节点 b8b9d9a4b2
当前提交 e686b776c8
共有 3 个文件被更改,包括 3 次插入3 次删除

查看文件

@ -94,7 +94,7 @@ export default {
async logout() {
this.$modal.confirm('确定注销并退出系统吗?', '提示').then(() => {
this.$store.dispatch('LogOut').then(() => {
location.href = getPath('/index');
this.$router.push({ path: 'login' })
})
}).catch(() => {});
}

查看文件

@ -226,7 +226,7 @@ function handleAuthorized() {
).then(() => {
isRelogin.show = false;
store.dispatch('LogOut').then(() => {
location.href = getPath('/index');
this.$router.push({ path: 'login' })
})
}).catch(() => {
isRelogin.show = false;

查看文件

@ -248,7 +248,7 @@ export default {
//
// console.log("", this.loginForm);
this.$store.dispatch(this.loginForm.loginType === "sms" ? "SmsLogin" : "Login", this.loginForm).then(() => {
this.$router.push({ path: this.redirect || "/" }).catch(() => {
this.$router.push({ path: "/" }).catch(() => {
});
}).catch(() => {
this.loading = false;