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.
84 lines
1.9 KiB
84 lines
1.9 KiB
4 years ago
|
<template>
|
||
|
<div class="header">
|
||
|
<img class="logo hh" v-if="isHh" src="@/assets/img/logo-hh.png" />
|
||
|
<img class="logo" v-else src="@/assets/img/logo.png" />
|
||
|
<div class="action">
|
||
|
<div class="user" @click="toPersonal">
|
||
|
<el-avatar :size="40" :src="avatar"></el-avatar>
|
||
|
<span class="m-l-10">{{userName}}</span>
|
||
|
</div>
|
||
|
<el-divider direction="vertical"></el-divider>
|
||
|
<el-button type="text" class="ml20" @click="logout">退出</el-button>
|
||
|
</div>
|
||
|
</div>
|
||
|
</template>
|
||
|
<script>
|
||
|
import { mapState, mapActions } from 'vuex'
|
||
|
import util from '@/libs/util'
|
||
|
import Setting from '@/setting'
|
||
|
export default {
|
||
|
data() {
|
||
|
return {
|
||
|
isHh: Setting.isHh,
|
||
|
};
|
||
|
},
|
||
|
computed: {
|
||
|
...mapState('user', [
|
||
|
'avatar','userName'
|
||
|
]),
|
||
|
...mapState('auth', [
|
||
|
'routes'
|
||
|
])
|
||
|
},
|
||
|
mounted(){
|
||
|
|
||
|
},
|
||
|
methods: {
|
||
|
...mapActions('user', [
|
||
|
'logout'
|
||
|
]),
|
||
|
toPersonal(){
|
||
|
this.$router.push('/setting/person')
|
||
|
},
|
||
|
},
|
||
|
};
|
||
|
</script>
|
||
|
<style lang="scss" scoped>
|
||
|
.header {
|
||
|
position: relative;
|
||
|
height: 60px;
|
||
|
display: flex;
|
||
|
justify-content: space-between;
|
||
|
align-items: center;
|
||
|
font-size: 16px;
|
||
|
color: #333;
|
||
|
background-color: #fff;
|
||
|
.logo {
|
||
|
height: 50px;
|
||
|
margin-left: 20px;
|
||
|
&.hh{
|
||
|
width: 220px;
|
||
|
}
|
||
|
}
|
||
|
.action {
|
||
|
display: flex;
|
||
|
padding-right: 50px;
|
||
|
align-items: center;
|
||
|
.user{
|
||
|
display: inline-flex;
|
||
|
align-items: center;
|
||
|
cursor: pointer;
|
||
|
}
|
||
|
.el-button--text{
|
||
|
margin-left: 20px;
|
||
|
color: #333;
|
||
|
}
|
||
|
.el-divider{
|
||
|
width: 2px;
|
||
|
height: 15px;
|
||
|
margin-left: 20px;
|
||
|
background-color: #333;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
</style>
|