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.
55 lines
1.4 KiB
55 lines
1.4 KiB
7 years ago
|
<template>
|
||
7 years ago
|
<a-dropdown style="display: inline-block; height: 100%; vertical-align: initial" >
|
||
7 years ago
|
<span style="cursor: pointer">
|
||
|
<a-avatar class="avatar" size="small" shape="circle" :src="currUser.avatar"/>
|
||
7 years ago
|
<span>{{currUser.name}}</span>
|
||
7 years ago
|
</span>
|
||
|
<a-menu style="width: 150px" slot="overlay">
|
||
|
<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>
|
||
7 years ago
|
import ADropdown from 'ant-design-vue/es/dropdown'
|
||
|
import AAvatar from 'ant-design-vue/es/avatar/Avatar'
|
||
|
import AIcon from 'ant-design-vue/es/icon/icon'
|
||
|
import AMenu from 'ant-design-vue/es/menu/index'
|
||
7 years ago
|
|
||
|
const AMenuItem = AMenu.Item
|
||
|
const AMenuDivider = AMenu.Divider
|
||
|
|
||
|
export default {
|
||
|
name: 'HeaderAvatar',
|
||
7 years ago
|
components: {AMenu, AMenuItem, AMenuDivider, AIcon, AAvatar, ADropdown},
|
||
7 years ago
|
computed: {
|
||
|
currUser () {
|
||
|
return this.$store.state.account.user
|
||
7 years ago
|
}
|
||
|
}
|
||
7 years ago
|
}
|
||
|
</script>
|
||
|
|
||
7 years ago
|
<style lang="less" scoped>
|
||
|
.avatar{
|
||
|
margin: 20px 4px 20px 0;
|
||
|
color: #1890ff;
|
||
|
background: hsla(0,0%,100%,.85);
|
||
|
vertical-align: middle;
|
||
|
}
|
||
7 years ago
|
</style>
|