diff --git a/front/src/views/home.vue b/front/src/views/home.vue index 4b18958..90f10ad 100644 --- a/front/src/views/home.vue +++ b/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") diff --git a/front/src/views/login.vue b/front/src/views/login.vue index 9c8a72d..eafc112 100644 --- a/front/src/views/login.vue +++ b/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);