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: "", userName: "",
}; };
}, },
watch: { watch: {},
"$router": {
handler(nev, olv) {
console.log(895, nev, olv)
},
deep: true
}
},
async mounted() { async mounted() {
await this.init(); await this.init();
}, },
methods: { methods: {
async init() { async init() {
console.log(895, this.$route)
if (!localStorage.getItem("userId")) { if (!localStorage.getItem("userId")) {
this.$router.push("/login"); this.$router.push("/login");
localStorage.setItem("routerFullPath", this.$route.fullPath)
} }
this.userName = localStorage.getItem("userName") this.userName = localStorage.getItem("userName")
let isAdmin = localStorage.getItem("isAdmin") 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)) { if (this.$_.get(res, ["list", 0, "isAdmin"], 0)) {
this.$router.push("/teacher") this.$router.push("/teacher")
} else { } else {
this.$router.push("/student") this.$router.push(localStorage.getItem("routerFullPath"))
localStorage.removeItem("routerFullPath")
} }
} else { } else {
ElMessage.error(res.msg); ElMessage.error(res.msg);

Loading…
Cancel
Save