CzRger 1 year ago
parent
commit
dd2efa27e7

+ 8 - 8
src/out/config.js

@@ -5,8 +5,8 @@ window.cusConfig = {
       {
         label: '系统链接',
         children: [
-          {label:'跨部门视频调度系统', href: 'http://59.212.31.24:8080/hnwl_lgs/login.jsp'},
-          {label:'视联网监控联网管理调试系统', href: 'http://10.110.80.31:8777/'},
+          {label:'进出岛物流监管', href: 'http://59.212.31.24:8080/hnwl_lgs/login.jsp'},
+          {label:'跨部门视频调度', href: 'http://10.110.80.31:8777/'},
           {label:'船舶管控系统', href: 'http://172.25.187.23/MainPage'},
           {label:'渔业监控管理系统', href: 'http://59.212.42.6:8080/authplatform'},
           {label:'综治分平台', href: 'http://172.22.11.28:8080'},
@@ -40,18 +40,18 @@ window.cusConfig = {
       {
         label: '反走私',
         children: [
-          {label:'海南社会管理信息化平台公安分平台反走私系统', href: 'http://74.10.24.107'},
+          {label:'反走私系统', href: 'http://74.10.24.107'},
           {label:'岸线防护圈系统', href: 'http://74.10.28.118:8090'},
         ]
       },
       {
         label: '人流管控',
         children: [
-          {label:'进出岛人员分析研判系统', href: 'http://74.6.57.207:18080/1016'},
           {label:'59国免签人员', href: 'http://74.6.54.73:31000/newLogin'},
           {label:'进出岛人脸识别', href: 'http://74.10.30.180:10000/#/login'},
-          {label:'外国人免签进出岛管理系统', href: 'http://74.6.54.73:31001/login'},
-          {label:'境外人员管理服务协同应用系统', href: 'http://74.6.54.73:31003/login'},
+          {label:'进出岛人员分析', href: 'http://74.6.57.207:18080/1016/auth/login!LoginFail.action'},
+          {label:'外国人免签进出岛', href: 'http://74.6.54.73:31001/login'},
+          {label:'境外人员管理系统', href: 'http://74.6.54.73:31003/login'},
         ]
       },
       {
@@ -67,8 +67,8 @@ window.cusConfig = {
       {
         label: '其他系统',
         children: [
-          {label:'海口边检总站数据分析平台', href: 'http://74.142.0.121:8000/zz'},
-          {label:'海南公安大数据实战应用平台', href: 'http://74.6.57.207:8080/stars/auth/login!toLoginPage.action'},
+          {label:'边检总站分析平台', href: 'http://74.142.0.121:8000/zz'},
+          {label:'大数据实战平台', href: 'http://74.6.57.207:8080/stars/auth/login!toLoginPage.action'},
         ]
       },
     ],

BIN
src/views/common/img/logo-icon_zwww.png


+ 4 - 0
src/views/common/static.ts

@@ -12,6 +12,10 @@ import InfoMain2 from './img/info-main-2.png'
 import InfoMain3 from './img/info-main-3.png'
 import InfoMain4 from './img/info-main-4.jpg'
 import InfoMain5 from './img/info-main-5.png'
+import LogoIcon from './img/logo-icon.png'
+import LogoIconZwww from './img/logo-icon_zwww.png'
+
+export const logoIcon = window?.cusConfig?.version === 'zwww' ? LogoIconZwww : LogoIcon
 
 export const bgImgMapper = [BgImg1, BgImg2, BgImg3]
 

+ 4 - 3
src/views/pc/index.vue

@@ -6,7 +6,7 @@
       </template>
     </div>
     <div class="pc-logo">
-      <img src="../common/img/logo-icon.png"/>
+      <img :src="LogoIcon"/>
       <div class="pc-logo-title">
         <div class="pc-logo-title-cn">
           海南社会管理信息化平台
@@ -69,7 +69,7 @@ import {
   toRefs,
   getCurrentInstance
 } from 'vue'
-import {bgImgMapper, infoMapper} from '../common/static'
+import {bgImgMapper, infoMapper, logoIcon} from '../common/static'
 
 export default defineComponent({
   name: 'App',
@@ -86,6 +86,7 @@ export default defineComponent({
       infoCurrent: '',
       InfoMapper: infoMapper,
       infoInput: '',
+      LogoIcon: logoIcon
     });
 
     const toHref = (val: { href: string | URL | undefined }) => {
@@ -130,7 +131,7 @@ export default defineComponent({
       ref_pcBg,
       ref_infoDialog,
       toHref,
-      switchInfo
+      switchInfo,
     }
   }
 })

+ 4 - 3
src/views/screen/index.vue

@@ -6,7 +6,7 @@
       </template>
     </div>
     <div class="screen-logo">
-      <img src="../common/img/logo-icon.png"/>
+      <img :src="LogoIcon"/>
       <div class="screen-logo-title">
         <div class="screen-logo-title-cn">
           海南社会管理信息化平台
@@ -94,7 +94,7 @@ import {
   getCurrentInstance
 } from 'vue'
 import {useStore} from 'vuex'
-import {bgImgMapper, infoMapper} from '../common/static'
+import {bgImgMapper, infoMapper, logoIcon} from '../common/static'
 
 export default defineComponent({
   name: 'App',
@@ -111,7 +111,8 @@ export default defineComponent({
       showInfo: false,
       infoIndex: -1,
       InfoMapper: infoMapper,
-      infoInput: ''
+      infoInput: '',
+      LogoIcon: logoIcon
     });
     const switchInfo = (ind) => {
       if (ind === state.infoIndex) {