|
@@ -73,6 +73,7 @@ export default {
|
|
this.$store
|
|
this.$store
|
|
.dispatch("user/getMenuList", this)
|
|
.dispatch("user/getMenuList", this)
|
|
.then(async (res) => {
|
|
.then(async (res) => {
|
|
|
|
+ console.log(res);
|
|
if (res === "noToken") {
|
|
if (res === "noToken") {
|
|
await this.logout();
|
|
await this.logout();
|
|
} else if (res === "success") {
|
|
} else if (res === "success") {
|
|
@@ -84,7 +85,7 @@ export default {
|
|
window.vm.$router.replace("/welcome");
|
|
window.vm.$router.replace("/welcome");
|
|
}
|
|
}
|
|
} else {
|
|
} else {
|
|
- await this.logout();
|
|
|
|
|
|
+ // await this.logout();
|
|
}
|
|
}
|
|
})
|
|
})
|
|
.catch(async (err) => {
|
|
.catch(async (err) => {
|