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.

112 lines
2.9 KiB

4 years ago
<template>
<div class="header">
3 years ago
<div style="line-height: 60px">
<img class="logo" :src="logoUrl" />
<span class="title">{{title}}</span>
</div>
4 years ago
<div class="action">
<div class="user" @click="toPersonal">
<el-avatar :size="40" :src="avatar"></el-avatar>
<span class="m-l-10">{{ customer ? customerName : userName }}</span>
4 years ago
</div>
<el-divider direction="vertical"></el-divider>
3 years ago
<el-button type="text" class="ml20" @click="loginout">退出</el-button>
4 years ago
</div>
</div>
</template>
<script>
4 years ago
import { mapState, mapActions } from "vuex";
4 years ago
export default {
data() {
return {
4 years ago
};
},
computed: {
4 years ago
...mapState("user", [
"avatar", "userName", "title", "logoUrl", "customer", "customerName"
4 years ago
])
},
4 years ago
mounted() {
this.getSystemDetail();
this.getUserDetail();
4 years ago
},
methods: {
4 years ago
...mapActions("user", [
3 years ago
"setTitle", "setLogoUrl", "setAvatar", "setUserName"
4 years ago
]),
3 years ago
loginout() { // 退出登录
3 years ago
this.$router.push('/login');
localStorage.clear();
sessionStorage.clear()
location.reload();
},
3 years ago
toPersonal() { // 个人中心(客户没有个人中心,老师有)
if (!this.customer) {
this.$router.push("/setting/person");
}
},
3 years ago
getSystemDetail () { // 获取系统logo
this.$get(this.api.logoDetail).then(res => {
3 years ago
if (res.data) {
this.setTitle(res.data.title);
this.setLogoUrl(res.data.logoUrl);
}
}).catch(res => {});
},
getUserDetail () { // 获取用户详情
this.$get(this.api.queryUserInfoDetails).then(res => {
let {userAvatars, userName} = res.result.hrUserInfo;
userAvatars && this.setAvatar(userAvatars);
this.setUserName(userName);
}).catch(res => {});
},
4 years ago
}
4 years ago
};
</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;
4 years ago
4 years ago
.logo {
height: 50px;
margin: 0 20px;
}
.title {
font-size: 18px;
font-weight: bold;
4 years ago
}
4 years ago
4 years ago
.action {
display: flex;
padding-right: 50px;
align-items: center;
4 years ago
.user {
4 years ago
display: inline-flex;
align-items: center;
cursor: pointer;
}
4 years ago
.el-button--text {
4 years ago
margin-left: 20px;
color: #333;
}
4 years ago
.el-divider {
4 years ago
width: 2px;
height: 15px;
margin-left: 20px;
background-color: #333;
}
}
}
</style>