From d5144e7cb7ccf2795e02098b850e282eb2a6e74f Mon Sep 17 00:00:00 2001 From: hanbaoshan <hanbaoshan@aiotlink.com> Date: 星期三, 14 十月 2020 10:27:07 +0800 Subject: [PATCH] 集群节点展示测试 --- src/pages/index/App.vue | 18 +++++++++++------- 1 files changed, 11 insertions(+), 7 deletions(-) diff --git a/src/pages/index/App.vue b/src/pages/index/App.vue index b5a62d2..a3b5f16 100644 --- a/src/pages/index/App.vue +++ b/src/pages/index/App.vue @@ -1,7 +1,7 @@ <template> <div class v-loading="vLoading" :style="`width: ${currentWidth}px;height:${currentHeight}px`"> <div class="web-site"> - <a href="http://www.aiotlink.com" target="_blank">www.aiotlink.com</a> + <a href="http://www.smartai.com" target="_blank">www.smartai.com</a> </div> <licence /> <div class="right-bg" style> @@ -9,7 +9,7 @@ </div> <div class="left-bg"> <div class="login-logo"> - <img src="../../assets/img/login-logo.png" alt width="105px" height="105px" /> + <img src="/images/login-logo.png" alt width="105px" height="105px" /> </div> <div class="login-com"> <span>鍖椾含璐濇�濈鎶�鏈湁闄愬叕鍙�</span> @@ -45,14 +45,14 @@ </el-form-item> </el-form> </div> - <p class="gradient-text gradient-text-one">鈥斺�斺�� {{serverTitle || '鏅� 鑳� 璁� 绠� 鑺� 鐐� 鈥� ReID'}} 鈥斺�斺��</p> + <p class="gradient-text gradient-text-one">鈥斺�斺�� {{serverTitle || 'SmartAI 鈥� ReID'}} 鈥斺�斺��</p> </div> </div> </template> <script> import { tologin, getLoginUserData, getServerName } from './api.ts' -import ParticleNetwork from '@/components/ParticleNetwork' +import ParticleNetwork from './ParticleNetwork' import Licence from '@/components/licence' export default { @@ -140,7 +140,7 @@ }) // await this.getMenuList() // this.$router.push('/Layout/Video') - location.assign("/view/desktop") + location.assign("/view/desktop/") return json } else { this.$notify({ @@ -166,10 +166,11 @@ async getServerName() { let res = await getServerName() if (res && res.success) { + console.log(res.data.serverName) this.serverTitle = res.data.serverName window.document.title = res.data.serverName ? res.data.serverName - : '鏅� 鑳� 璁� 绠� 鑺� 鐐�' + : 'SmartAI' sessionStorage.setItem('title', res.data.serverName) } }, @@ -177,6 +178,9 @@ created() { this.getServerName() this.getScreenHeight() + }, + mounted(){ + console.log(this.serverTitle) }, watch: {}, beforeDestroy() { @@ -189,7 +193,7 @@ position: fixed; top: 0; left: 0; - background-image: url("../../assets/img/login-net.png"); + background-image: url("/images/login-net.png"); width: 100%; height: 100%; -- Gitblit v1.8.0