退出系统

20240205
yujialong 3 years ago
parent d04b983b56
commit e2b6ca9f11
  1. 24
      src/layouts/header/index.vue

@ -33,15 +33,21 @@ export default {
})
},
exit(){
let assessmentId = sessionStorage.getItem('assessmentId')
if (assessmentId != 'null' && assessmentId != null && assessmentId != ''){
window.location = 'http://39.108.250.202/student/#/ass/list'
// window.location = 'http://www.occupationlab.com/#/ass/list'
}else{
let cid = sessionStorage.getItem('cid')
window.location = 'http://39.108.250.202/student/#/station/preview?courseId='+cid+'&curriculumName=银行项目'
// window.location = 'http://www.occupationlab.com/#/station/preview?courseId='+cid+'&curriculumName='
}
let href = ''
const url = location.href
const host = url.includes('huorantech.cn') ?
`http://www.occupationlab.com` :
process.env.NODE_ENV === 'development' ?
`http://192.168.31.155:8082` :
`http://39.108.250.202/student`
let assessmentId = sessionStorage.getItem('assessmentId')
if (assessmentId != 'null' && assessmentId != null && assessmentId != ''){
href = `${host}/#/ass/list`
}else{
const cid = sessionStorage.getItem('cid')
href = `${host}/#/station/preview?courseId=${cid}&curriculumName=银行项目`
}
location.href = href
},
},
};

Loading…
Cancel
Save