Browse Source

正式环境打包配置文件,oa调用页面路由

fenghaifu 2 years ago
parent
commit
396dd83a7b
3 changed files with 13 additions and 5 deletions
  1. 2 2
      .env
  2. 2 2
      .env.production
  3. 9 1
      src/config/router.config.js

+ 2 - 2
.env

@@ -1,6 +1,6 @@
 NODE_ENV=production
-VUE_APP_PLATFORM_NAME=JeecgBoot 企业级低代码平台
+VUE_APP_PLATFORM_NAME=森语单证系统
 # 开启单点登录
-VUE_APP_SSO=false
+VUE_APP_SSO=true
 # 开启微应用模式
 VUE_APP_QIANKUN=false

+ 2 - 2
.env.production

@@ -1,5 +1,5 @@
 NODE_ENV=production
-#VUE_APP_API_BASE_URL=http://220.191.168.86:18001/jeecg-boot
-VUE_APP_API_BASE_URL=http://www.myfitt.cn:18003/jeecg-boot
+VUE_APP_API_BASE_URL=http://www.myfitt.cn:18001/jeecg-boot
+#VUE_APP_API_BASE_URL=http://www.myfitt.cn:18003/jeecg-boot
 VUE_APP_CAS_BASE_URL=http://www.myfitt.cn:18005/cas
 VUE_APP_ONLINE_BASE_URL=http://fileview.jeecg.com/onlinePreview

+ 9 - 1
src/config/router.config.js

@@ -378,5 +378,13 @@ export const constantRouterMap = [
     path: '/404',
     component: () => import(/* webpackChunkName: "fail" */ '@/views/exception/404')
   },
-
+  /* 不带左上的页面,oa引用 */
+  {
+    path: '/reportFormsSimple/fabricLossesSummary',
+    component: () => import(/* 面损表列表" */ '@/views/cost-allocation-total/fabricLossesSummary')
+  },
+  {
+    path: '/reportFormsSimple/fabricLossTable',
+    component: () => import(/* 面损表" */ '@/views/reportForms/fabric-loss-table')
+  },
 ]