From 3a80faf0196f8dfa1b6cdb26ece68b37842c66b1 Mon Sep 17 00:00:00 2001
From: litian <2804272236@qq.com>
Date: 星期三, 12 六月 2024 19:24:19 +0800
Subject: [PATCH] xiugai

---
 src/main.ts |   70 +++++++++-------------------------
 1 files changed, 19 insertions(+), 51 deletions(-)

diff --git a/src/main.ts b/src/main.ts
index 440b309..8a1e974 100644
--- a/src/main.ts
+++ b/src/main.ts
@@ -8,65 +8,33 @@
 import router from './router'
 import * as ElementPlusIconsVue from '@element-plus/icons-vue'
 import toolClass from '@/assets/js/toolClass'
-import MG from "@/assets/js/middleGround/WebMiddleGroundApi.js"
+import MG from '@/assets/js/middleGround/WebMiddleGroundApi.js'
 import './child.ts'
 
 const handleGetToken = () => {
   return localStorage.getItem('token')
 }
 
-const getUrlParam =(paraName)=>{
-  var url = window.location.toString();
-   var arrObj = url.split("?");
-   if (arrObj.length > 1) {
-      var arrPara = arrObj[1].split("&");
-      var arr;
-      for (var i = 0; i < arrPara.length; i++) {
-          arr = arrPara[i].split("=");
-          if (arr != null && arr[0] == paraName) {
-            return arr[1];
-          }
-        }
-        return "";
-      } else {
-        return "";
-   }
-}
-
 // 璺敱鎵ц涔嬪墠鐨勪竴浜涙搷浣�
 router.beforeEach((to, from, next) => {
-  let token = getUrlParam('token');
-  let bookId = getUrlParam('bookId');
-  if(bookId){
-    localStorage.setItem('bookId', bookId)
-  }
-  
-  if (token) {
-    localStorage.setItem('token', token)
-    
-    if (to.path === '/login') {
-      next({ path: '/home' })
-    } else {
-      // 濡傛灉涓嶆槸鐧诲綍椤甸潰锛岃烦杞埌鐩爣鐨勯〉闈�
-      next()
-    }
-  }else if (handleGetToken()) {
-    // 鏄惁鏄櫥褰曢〉闈紝鐩存帴鍒伴椤�
-    if (to.path === '/login') {
-      next({ path: '/home' })
-    } else {
-      // 濡傛灉涓嶆槸鐧诲綍椤甸潰锛岃烦杞埌鐩爣鐨勯〉闈�
-      next()
-    }
-  } else {
-    // 娌℃湁token
-    if (!to.meta || !to.meta.auth) {
-      // 鍦ㄥ厤鐧诲綍鐧藉悕鍗曪紝鐩存帴杩涘叆
-      next()
-    } else {
-      next(`/login?redirect=${to.fullPath}`) // 鍚﹀垯鍏ㄩ儴閲嶅畾鍚戝埌鐧诲綍椤�
-    }
-  }
+  next()
+  // if (handleGetToken()) {
+  //   // 鏄惁鏄櫥褰曢〉闈紝鐩存帴鍒伴椤�
+  //   if (to.path === '/login') {
+  //     next({ path: '/home', query: { bookId: localStorage.getItem('bookId') } })
+  //   } else {
+  //     // 濡傛灉涓嶆槸鐧诲綍椤甸潰锛岃烦杞埌鐩爣鐨勯〉闈�
+  //     next()
+  //   }
+  // } else {
+  //   // 娌℃湁token
+  //   if (!to.meta || !to.meta.auth) {
+  //     // 鍦ㄥ厤鐧诲綍鐧藉悕鍗曪紝鐩存帴杩涘叆
+  //     next()
+  //   } else {
+  //     next(`/login?redirect=${to.fullPath}`) // 鍚﹀垯鍏ㄩ儴閲嶅畾鍚戝埌鐧诲綍椤�
+  //   }
+  // }
 })
 
 // qiankun涓诲簲鐢ㄤ笌寰簲鐢ㄩ�氳

--
Gitblit v1.9.1