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.
57 lines
1.1 KiB
57 lines
1.1 KiB
7 years ago
|
<template>
|
||
5 years ago
|
<a-dropdown>
|
||
|
<div class="header-avatar" style="cursor: pointer">
|
||
5 years ago
|
<a-avatar class="avatar" size="small" shape="circle" :src="user.avatar"/>
|
||
5 years ago
|
<span class="name">{{user.name}}</span>
|
||
|
</div>
|
||
5 years ago
|
<a-menu :class="['avatar-menu']" slot="overlay">
|
||
7 years ago
|
<a-menu-item>
|
||
|
<a-icon type="user" />
|
||
|
<span>个人中心</span>
|
||
|
</a-menu-item>
|
||
|
<a-menu-item>
|
||
|
<a-icon type="setting" />
|
||
|
<span>设置</span>
|
||
|
</a-menu-item>
|
||
|
<a-menu-divider />
|
||
|
<a-menu-item>
|
||
7 years ago
|
<router-link to="/login">
|
||
|
<a-icon type="poweroff" />
|
||
|
<span>退出登录</span>
|
||
|
</router-link>
|
||
7 years ago
|
</a-menu-item>
|
||
|
</a-menu>
|
||
|
</a-dropdown>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
5 years ago
|
import {mapState} from 'vuex'
|
||
|
|
||
7 years ago
|
export default {
|
||
|
name: 'HeaderAvatar',
|
||
7 years ago
|
computed: {
|
||
5 years ago
|
...mapState('setting', ['weekMode']),
|
||
|
...mapState('account', ['user']),
|
||
7 years ago
|
}
|
||
7 years ago
|
}
|
||
|
</script>
|
||
|
|
||
5 years ago
|
<style lang="less">
|
||
|
.header-avatar{
|
||
5 years ago
|
display: inline-flex;
|
||
|
.avatar, .name{
|
||
|
align-self: center;
|
||
|
}
|
||
|
.avatar{
|
||
|
margin-right: 8px;
|
||
|
}
|
||
|
.name{
|
||
|
font-weight: 500;
|
||
|
}
|
||
7 years ago
|
}
|
||
5 years ago
|
.avatar-menu{
|
||
|
width: 150px;
|
||
|
}
|
||
5 years ago
|
|
||
7 years ago
|
</style>
|