From adb6a04e1e8ce6262048da54c4910405182b6d4c Mon Sep 17 00:00:00 2001 From: yujialong <479214531@qq.com> Date: Wed, 25 Aug 2021 10:45:49 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E9=A1=B9=E7=9B=AE=E8=B7=B3?= =?UTF-8?q?=E8=BD=AC=EF=BC=8C=E8=B7=AF=E7=94=B1=E5=88=A4=E6=96=AD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/Home.vue | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/src/views/Home.vue b/src/views/Home.vue index b50a8fb..684a4c5 100644 --- a/src/views/Home.vue +++ b/src/views/Home.vue @@ -189,22 +189,16 @@ export default { this.leavePage() if(this.projectPermissions){ // 返回到考核列表 - if(location.host.includes('10.196.131.73')) { // 判断是否是河海 + if (this.$config.isBeta) { // 判断是否是职站测试服 location.href = `http://120.78.198.231/#/ass/list` - } else if (location.host.includes('120.78.198.231')) { // 判断是否是职站测试服 - location.href = `http://120.78.198.231/#/ass/list` - } else { - location.href = `http://www.occupationlab.com/#/ass/list` } + location.href = `${this.$config.host}#/dashboard#2` }else{ // 返回到实验台 - if(location.host.includes('10.196.131.73')) { - location.href = `http://120.78.198.231/#/ass/list` - } else if (location.host.includes('120.78.198.231')) { + if (this.$config.isBeta) { location.href = `http://120.78.198.231/#/station/list` - } else { - location.href = `http://www.occupationlab.com/#/station/list` } + location.href = `${this.$config.host}#/dashboard#1` } this.$refs.mainindex.getClearTime(); },