You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

101 lines
2.6 KiB

4 years ago
<template>
2 years ago
<div class="header"
ref="exitHeader">
<div class="inner"
style="width: 100%">
<div class="logo"
@click="toIndex"
style="float: left">
<img src="../../assets/img/logo.png"
alt="">
</div>
<div style="float: right;margin:0 60px;font-size: 18px">
<span style="cursor:pointer"
11 months ago
@click="logout">
2 years ago
退出<i class="icon el-icon-s-unfold"></i>
</span>
</div>
4 years ago
</div>
2 years ago
</div>
4 years ago
</template>
<script>
11 months ago
import { mapMutations } from 'vuex'
4 years ago
import Setting from '@/setting'
import util from '@/libs/util'
2 years ago
import Cookie from 'js-cookie'
4 years ago
export default {
2 years ago
data () {
return {
token: util.local.get(Setting.tokenKey),
};
},
mounted () {
2 years ago
this.$route.query.manager ? Cookie.set('manager', 1) : Cookie.remove('manager')
2 years ago
},
methods: {
11 months ago
...mapMutations({
logout: 'user/logout',
}),
2 years ago
toIndex () {
this.$refs.nav.jump({
index: '/index/list',
title: '首页'
})
4 years ago
},
2 years ago
exit () {
const url = location.href
let href = process.env.NODE_ENV === 'development' ?
`http://${location.hostname}:8082/#/` :
`${url.includes('huorantech.cn') ? `https://www.occupationlab.com` : location.origin}${Cookie.get('manager') ?
'/admin' :
(url.includes('huorantech.cn') || url.includes('izhixinyun.com')) ?
'' :
'/student'}/#/`
let assessmentId = sessionStorage.getItem('assessmentId')
if (assessmentId != 'null' && assessmentId != null && assessmentId != '') {
href += `ass/list`
} else {
const cid = sessionStorage.getItem('cid')
2 years ago
href += `station/preview?courseId=${cid}&curriculumName=银行项目&mallId=${this.$route.query.mallId}`
2 years ago
}
2 years ago
sessionStorage.clear()
2 years ago
location.href = href
4 years ago
},
2 years ago
},
watch: {
'$route.path': {
handler (newVal) {
this.$nextTick(() => {
console.log(newVal)
if (newVal === '/index/list') {
this.$refs.exitHeader.style.backgroundColor = 'rgb(250, 250, 250)'
} else {
this.$refs.exitHeader.style.backgroundColor = 'rgb(244, 245, 248)'
}
})
},
2 years ago
immediate: true
3 years ago
}
2 years ago
}
4 years ago
};
</script>
<style lang="scss" scoped>
2 years ago
.header {
width: 100%;
display: flex;
align-items: center;
position: relative;
height: 68px;
// background-color: #fff;
background-color: rgb(244, 245, 248);
z-index: 1001;
.logo {
width: 500px;
margin-left: 42px;
cursor: pointer;
img {
width: 100%;
4 years ago
}
}
2 years ago
}
4 years ago
</style>