修复退出实验,跳转路径错误bug

master
yujialong 3 years ago
parent cf2f76f480
commit 7a5d1a8be8
  1. 19
      src/views/Home.vue

@ -113,7 +113,6 @@ export default {
? parseInt(sessionStorage.getItem("timer"))
: 0,
codeKey: 1,
host: this.$config.host
};
},
components: {
@ -189,9 +188,23 @@ export default {
back() {
this.leavePage()
if(this.projectPermissions){
location.href = `${this.host}#/dashboard#2`
//
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')) { //
location.href = `http://120.78.198.231/#/ass/list`
} else {
location.href = `http://www.occupationlab.com/#/ass/list`
}
}else{
location.href = `${this.host}#/dashboard#1`
//
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')) {
location.href = `http://120.78.198.231/#/station/list`
} else {
location.href = `http://www.occupationlab.com/#/station/list`
}
}
this.$refs.mainindex.getClearTime();
},

Loading…
Cancel
Save