lc18518571399 9 months ago
parent
commit
ab1906997f
  1. 11
      front/src/views/home.vue
  2. 3
      front/src/views/login.vue

11
front/src/views/home.vue

@ -36,22 +36,15 @@ export default {
userName: "",
};
},
watch: {
"$router": {
handler(nev, olv) {
console.log(895, nev, olv)
},
deep: true
}
},
watch: {},
async mounted() {
await this.init();
},
methods: {
async init() {
console.log(895, this.$route)
if (!localStorage.getItem("userId")) {
this.$router.push("/login");
localStorage.setItem("routerFullPath", this.$route.fullPath)
}
this.userName = localStorage.getItem("userName")
let isAdmin = localStorage.getItem("isAdmin")

3
front/src/views/login.vue

@ -66,7 +66,8 @@ export default {
if (this.$_.get(res, ["list", 0, "isAdmin"], 0)) {
this.$router.push("/teacher")
} else {
this.$router.push("/student")
this.$router.push(localStorage.getItem("routerFullPath"))
localStorage.removeItem("routerFullPath")
}
} else {
ElMessage.error(res.msg);

Loading…
Cancel
Save