跳转路由环境切换

20240205
yujialong 3 years ago
parent 0346aca60d
commit 329ed7b49c
  1. 38
      src/components/case/index.vue

@ -582,6 +582,16 @@ export default {
}).catch((error)=>{
})
},
//
toPage(token, cid, systemId) {
const url = location.href
const host = url.includes('occupationlab.com') ?
`http://www.huorantech.cn/banksystem` :
process.env.NODE_ENV === 'development' ?
`http://192.168.31.155:8093` :
`http://39.108.250.202:9000`
location.href = `${host}/#/index/list?token=${token}&cid=${cid}&systemId=${systemId}`
},
//
selectProject(){
this.lockIt = false
@ -632,19 +642,7 @@ export default {
this.projectId = data.data.projectManage.projectId;
this.projectManage = data.data.projectManage;
this.requires = data.data.projectJudgmentVos;
//线
// location.href = 'http://124.71.12.62/banksystem/#/index/list?'+'token='+token+'&cid='+cid+'&systemId='+systemId
// location.href = 'http://www.huorantech.cn/banksystem/#/index/list?'+'token='+token+'&cid='+cid+'&systemId='+systemId
//
if(process.env.NODE_ENV === 'development') {
location.href = "http://192.168.31.155:8093/#/index/list?"+'token='+token+'&cid='+cid+'&systemId='+systemId
}else {
location.href = 'http://39.108.250.202/banksystem/#/index/list?'+'token='+token+'&cid='+cid+'&systemId='+systemId
}
//
// location.href = "http://192.168.31.155:8093/#/index/list?"+'token='+token+'&cid='+cid+'&systemId='+systemId
this.toPage(token, cid, systemId)
}
}).catch((error)=>{
})
@ -871,19 +869,7 @@ export default {
this.grade = '00'
this.$router.push('/index/list')
this.getBeginTime()
//线git sta
// location.href = 'http://124.71.12.62/banksystem/#/index/list?'+'token='+token+'&cid='+cid+'&systemId='+systemId
// location.href = 'http://www.huorantech.cn/banksystem/#/index/list?'+'token='+token+'&cid='+cid+'&systemId='+systemId
//
if(process.env.NODE_ENV === 'development') {
location.href = "http://192.168.31.155:8093/#/index/list?"+'token='+token+'&cid='+cid+'&systemId='+systemId
}else {
location.href = 'http://39.108.250.202/banksystem/#/index/list?'+'token='+token+'&cid='+cid+'&systemId='+systemId
}
//
// location.href = "http://192.168.31.155:8093/#/index/list?"+'token='+token+'&cid='+cid+'&systemId='+systemId
console.log(process.env.NODE_ENV)
this.toPage(token, cid, systemId)
},
checkVer() {

Loading…
Cancel
Save