Browse Source

添加允许跳过登录页标识

wangb 3 months atrás
parent
commit
b89453700f
3 changed files with 48 additions and 38 deletions
  1. 10 10
      .env.production
  2. 11 6
      public/static/config/modeConfig.js
  3. 27 22
      src/permission.js

+ 10 - 10
.env.production

@@ -19,37 +19,37 @@ VUE_APP_TITLE = '页面标题'
 # VUE_APP_LOGIN_URL = 'http://192.168.2.231:48080'
 # VUE_APP_LOGIN_URL = 'http://127.0.0.1:48080'
 
-VUE_APP_LOGIN_URL = 'http://172.16.12.102:48080'
-# VUE_APP_LOGIN_URL = 'http://10.127.7.241:48080'
+VUE_APP_LOGIN_URL = 'http://10.127.7.241:48080'
+# VUE_APP_LOGIN_URL = 'http://172.16.12.102:48080'
 
 # 生产环境/重写路径(公共路径)
 
 # 发电能力分析
 # VUE_APP_GENERAT_URL = 'http://123.60.219.66:9002'
-# VUE_APP_GENERAT_URL = 'http://10.127.7.241:9002'
-VUE_APP_GENERAT_URL = 'http://172.16.12.101:9002'
+VUE_APP_GENERAT_URL = 'http://10.127.7.241:9002'
+# VUE_APP_GENERAT_URL = 'http://172.16.12.101:9002'
 # VUE_APP_GENERAT_URL = 'http://192.168.2.231:9002'
 # VUE_APP_GENERAT_URL = 'http://127.0.0.1:9002'
 
 # 智能报表
 # VUE_APP_REPORT_URL = 'http://123.60.219.66:9001'
 # VUE_APP_REPORT_URL = 'http://192.168.0.105:9001'
-# VUE_APP_REPORT_URL = 'http://10.127.7.241:9001'
-VUE_APP_REPORT_URL = 'http://172.16.12.101:9001'
+VUE_APP_REPORT_URL = 'http://10.127.7.241:9001'
+# VUE_APP_REPORT_URL = 'http://172.16.12.101:9001'
 # VUE_APP_REPORT_URL = 'http://192.168.2.231:9001'
 # VUE_APP_REPORT_URL = 'http://127.0.0.1:9001'
 
 # 功率预测
 # VUE_APP_BASE_URL = 'http://123.60.219.66:8086'
 # VUE_APP_BASE_URL = 'http://192.168.0.105:8086'
-# VUE_APP_BASE_URL = 'http://10.127.7.241:8086'
-VUE_APP_BASE_URL = 'http://172.16.12.101:8086'
+VUE_APP_BASE_URL = 'http://10.127.7.241:8086'
+# VUE_APP_BASE_URL = 'http://172.16.12.101:8086'
 # VUE_APP_BASE_URL = 'http://192.168.2.231:8086'
 # VUE_APP_BASE_URL = 'http://127.0.0.1:8086'
 
 # 综合报警
-# VUE_APP_ALARM = 'http://10.127.7.241:6015'
-VUE_APP_ALARM = 'http://172.16.12.101:6015'
+VUE_APP_ALARM = 'http://10.127.7.241:6015'
+# VUE_APP_ALARM = 'http://172.16.12.101:6015'
 
 # VUE_APP_ADP_BASE_URL = 'http://10.127.7.241:6015'
 VUE_APP_ADP_BASE_URL = 'http://172.16.12.101'

+ 11 - 6
public/static/config/modeConfig.js

@@ -12,17 +12,20 @@ let tilesUrl = null;
 // 3D 地球最大支持放大到多少级
 const tilesMaxLevel = 18;
 
+// 允许跳过登录进入其他路由
+const skipLogin = false;
+
 // 适配器地址
 // const adapterUrl = "http://10.155.32.4:8011/";
 
 // 切换模块时是否提示当前模块名称(用于对内介绍项目时便捷显示模块名称)
 const showModuleName = 0;
 
-// const reportBaseUrl = "http://10.127.7.241:8083";
-const reportBaseUrl = "http://172.16.12.101:8083";
+const reportBaseUrl = "http://10.127.7.241:8083";
+// const reportBaseUrl = "http://172.16.12.101:8083";
 
-// const baseReportUrl = "http://10.127.7.196";
-const baseReportUrl = "http://172.16.12.101";
+const baseReportUrl = "http://10.127.7.196";
+// const baseReportUrl = "http://172.16.12.101";
 
 // 是否隐藏控制台打印的 log info warn 信息
 const hideLog = false;
@@ -57,7 +60,8 @@ window.__MODE__ = {
     tilesMaxLevel,
     showModuleName,
     reportBaseUrl,
-    baseReportUrl
+    baseReportUrl,
+    skipLogin
 };
 
 export default {
@@ -68,5 +72,6 @@ export default {
     tilesMaxLevel,
     showModuleName,
     reportBaseUrl,
-    baseReportUrl
+    baseReportUrl,
+    skipLogin
 };

+ 27 - 22
src/permission.js

@@ -15,37 +15,42 @@ import { isRelogin } from "./utils/request";
 
 NProgress.configure({ showSpinner: false }) // 关闭加载微调器
 
-const whiteList = ['/login','/404','/layout'] // 设置白名单,用于任何人可访问
+const whiteList = ['/login', '/404', '/layout'] // 设置白名单,用于任何人可访问
 
 // 钩子函数
 router.beforeEach((to, from, next) => {
-    document.title = "发电量管控平台";
+  document.title = "发电量管控平台";
   NProgress.start()
-  let token = getToken() 
-  if (token) {
-        if(to.path==='/login'){
-            return next()
-        }else{
-            if(!token){
-                ElMessage.error('登录已失效,请重新登录');
-                return next('/login')
-            } else if (to.path==='/') {
-                return next('/login')
-            } else{
-                next()
-            }
-        }
+  let token = getToken()
+  if (window.__MODE__.skipLogin) {
+    next();
   } else {
-    // 没有token
-    if (whiteList.indexOf(to.path) !== -1) {
-      // 在免登录白名单,直接进入
-      next()
+    if (token) {
+      if (to.path === '/login') {
+        return next()
+      } else {
+        if (!token) {
+          ElMessage.error('登录已失效,请重新登录');
+          return next('/login')
+        } else if (to.path === '/') {
+          return next('/login')
+        } else {
+          next()
+        }
+      }
     } else {
-      next(`/login?redirect=${to.fullPath}`) // 否则全部重定向到登录页
-      NProgress.done()
+      // 没有token
+      if (whiteList.indexOf(to.path) !== -1) {
+        // 在免登录白名单,直接进入
+        next()
+      } else {
+        next(`/login?redirect=${to.fullPath}`) // 否则全部重定向到登录页
+        NProgress.done()
       }
       // next()
+    }
   }
+
 })
 
 router.afterEach(() => {