退出系统

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

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