|
@@ -140,13 +140,13 @@ export default {
|
|
|
removeToken();
|
|
|
sessionStorage.clear();
|
|
|
this.$store.dispatch("app/toggleOutflag", false);
|
|
|
- this.$router.push(`/login?redirect=${this.$route.fullPath}`);
|
|
|
+ this.$router.push(`/login`);
|
|
|
location.reload();
|
|
|
} else {
|
|
|
sessionStorage.removeItem("userName");
|
|
|
this.$store.dispatch("app/toggleOutflag", false);
|
|
|
const res = await this.$store.dispatch("user/logout");
|
|
|
- this.$router.push(`/login?redirect=${this.$route.fullPath}`);
|
|
|
+ this.$router.push(`/login`);
|
|
|
}
|
|
|
},
|
|
|
//修改密码
|