From ab1906997ff9d96e3b0da49f567b0453952ea571 Mon Sep 17 00:00:00 2001
From: lc18518571399 <18518571399@163.com>
Date: Wed, 10 Jul 2024 19:25:49 +0800
Subject: [PATCH] 123

---
 front/src/views/home.vue  | 11 ++---------
 front/src/views/login.vue |  3 ++-
 2 files changed, 4 insertions(+), 10 deletions(-)

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);