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(); },