hm 1 month ago
parent
commit
5e59b076fc

+ 7 - 2
.env.development

@@ -12,7 +12,12 @@ VUE_CLI_BABEL_TRANSPILE_MODULES = true
 
 # VUE_APP_BASE_API  = 'http://10.1.161.127:8080'
 # VUE_APP_BASE_API  = 'http://10.1.161.183:6661'
-VUE_APP_BASE_API  = 'http://10.1.161.48:6661'
-VUE_APP_BASE_API2  = 'http://10.1.161.48:5001'
+
+# VUE_APP_BASE_API  = 'http://10.1.161.156:28080'
+# VUE_APP_BASE_API2  = 'http://10.1.161.156:5001'
+
+# VUE_APP_BASE_API  = 'http://10.1.161.156:28080/liutongyi-api'
+VUE_APP_BASE_API  = 'http://10.1.161.156:6661'
+VUE_APP_BASE_API2  = 'http://10.1.161.156:5001/prod-api'
 
 # VUE_APP_BASE_API  = 'http://10.1.162.158:6661'

+ 1 - 1
.env.production

@@ -8,6 +8,6 @@ ENV = 'production'
 VUE_APP_BASE_API = '/prod-api'
 # VUE_APP_BASE_API = 'http://10.1.161.156:4000/liutongyi-api'
 
-VUE_APP_BASE_API  = 'http://10.1.161.156:6661/liutongyi-api'
+VUE_APP_BASE_API  = 'http://10.1.161.156:28080/'
 VUE_APP_BASE_API2  = 'http://10.1.161.156:5001/prod-api'
 

BIN
dist.rar


+ 1 - 1
public/index.html

@@ -5,7 +5,7 @@
     <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
     <meta name="renderer" content="webkit">
     <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
-    <link rel="icon" href="<%= BASE_URL %>favicon.ico">
+    <link rel="icon" type="image/svg+xml" href="./logo1.png" />
     <title><%= webpackConfig.name %></title>
     <!--[if lt IE 11]><script>window.location.href='/html/ie.html';</script><![endif]-->
 	  <style>

BIN
public/logo.png


BIN
public/logo1.png


+ 19 - 0
src/api/index.js

@@ -7,4 +7,23 @@ export function getTabSystemOtherList (query) {
     method: 'get',
     params: query
   })
+}
+// 首页单点登录
+// 第三方系统管理-获取系统Token
+export function getSysToken (data) {
+  return request({
+    url: '/get-sys-token',
+    method: 'post',
+    data: data
+  })
+}
+
+
+// 获取六统一token
+export function getLTYToken (query) {
+  return request({
+    url: `/getLTYToken/${code}`,
+    method: 'get',
+    params: query
+  })
 }

+ 2 - 0
src/api/login.js

@@ -110,3 +110,5 @@ export function loginByMail (data) {
 }
 
 
+
+

+ 1 - 1
src/layout/components/Sidebar/Logo.vue

@@ -49,7 +49,7 @@
 </template>
 
 <script>
-import logoImg from "@/assets/logo/logo.png";
+import logoImg from "@/assets/img/logo.png";
 import variables from "@/assets/styles/variables.scss";
 
 export default {

+ 12 - 12
src/router/index.js

@@ -30,17 +30,17 @@ import Layout from '@/layout'
 
 // 公共路由
 export const constantRoutes = [
-  {
-    path: '/redirect',
-    component: Layout,
-    hidden: true,
-    children: [
-      {
-        path: '/redirect/:path(.*)',
-        component: () => import('@/views/redirect')
-      }
-    ]
-  },
+  // {
+  //   path: '/redirect',
+  //   component: Layout,
+  //   hidden: true,
+  //   children: [
+  //     {
+  //       path: '/redirect/:path(.*)',
+  //       component: () => import('@/views/redirect')
+  //     }
+  //   ]
+  // },
   {
     path: '/login',
     component: () => import('@/views/login'),
@@ -72,7 +72,7 @@ export const constantRoutes = [
     redirect: 'index',
     children: [
       {
-        path: 'index',
+        path: '/index',
         component: () => import('@/views/index'),
         name: 'Index',
         meta: { title: '首页', icon: 'dashboard', affix: true }

+ 4 - 1
src/views/index.vue

@@ -27,7 +27,7 @@
         <div class="welcome-text">
           <h3>欢迎来到</h3>
           <h3>上海市疾病预防控制中心</h3>
-          <el-button type="primary" round size="medium">登录</el-button>
+          <el-button type="primary" round size="medium" @click="loginHandle">登录</el-button>
         </div>
       </div>
       <!-- 公告栏 -->
@@ -113,6 +113,9 @@ export default {
     },
     goNotice () {
       this.$router.push('/system/notice')
+    },
+    loginHandle () {
+      window.open('https://iam.scdc.sh.cegn.cn')
     }
   },
 

+ 2 - 2
vue.config.js

@@ -35,8 +35,8 @@ module.exports = {
       // detail: https://cli.vuejs.org/config/#devserver-proxy
       [process.env.VUE_APP_BASE_API]: {
         // target: `http://10.1.161.127:8080`,
-        // target: `http://10.1.161.183:6661`,
-        target: `http://10.1.161.44:6661`,
+        target: `http://10.1.161.156:6661`,
+        // target: `http://10.1.161.27/80`,
         // target: `http://10.1.162.158:6661`,
 
         changeOrigin: true,