人生啊人生 3 months ago
parent
commit
c4c20874b4
1 changed files with 2 additions and 2 deletions
  1. 2 2
      user_web/src/view/admin/components/User/LoginOrExit.vue

+ 2 - 2
user_web/src/view/admin/components/User/LoginOrExit.vue

@@ -75,7 +75,7 @@ let windowsExitEvent = () => {
  * 到首页
  * 到首页
  */
  */
 const goIndexEvent = () => {
 const goIndexEvent = () => {
-    router.push('/teacher');
+    router.push('/admin');
 }
 }
 
 
 
 
@@ -83,7 +83,7 @@ const goIndexEvent = () => {
  * 退出到登录页
  * 退出到登录页
  */
  */
 const exitEvent = () => {
 const exitEvent = () => {
-    router.push('/login');
+    router.push('/');
 }
 }