油批
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.

134 lines
2.8 KiB

2 years ago
<template>
<div class="navbar">
2 years ago
<hamburger :is-active="sidebar.opened" class="hamburger-container" @toggleClick="toggleSideBar" />
2 years ago
<breadcrumb class="breadcrumb-container" />
<div class="right-menu">
<el-dropdown class="avatar-container" trigger="click">
<div class="avatar-wrapper">
2 years ago
<img :src="avatar + '?imageView2/1/w/80/h/80'" class="user-avatar" />
2 years ago
<i class="el-icon-caret-bottom" />
</div>
<el-dropdown-menu slot="dropdown" class="user-dropdown">
2 years ago
<el-dropdown-item @click.native="logout">
<span style="display: block">注销登录</span>
2 years ago
</el-dropdown-item>
</el-dropdown-menu>
</el-dropdown>
</div>
</div>
</template>
<script>
2 years ago
import { mapGetters } from 'vuex'
import Breadcrumb from '@/components/Breadcrumb'
import Hamburger from '@/components/Hamburger'
import store from '@/store'
2 years ago
2 years ago
import serve from 'api/login.js'
2 years ago
export default {
components: {
Breadcrumb,
2 years ago
Hamburger
2 years ago
},
computed: {
2 years ago
...mapGetters(['sidebar', 'avatar'])
2 years ago
},
methods: {
toggleSideBar() {
2 years ago
this.$store.dispatch('app/toggleSideBar')
2 years ago
},
2 years ago
logout() {
2 years ago
serve.loginOut().then(res => {
2 years ago
if (res.code === 20000) {
2 years ago
localStorage.removeItem('businessToken')
store.dispatch('user/removeInfo')
this.$router.push('/login')
2 years ago
}
2 years ago
})
}
}
}
2 years ago
</script>
<style lang="scss" scoped>
.navbar {
height: 50px;
overflow: hidden;
position: relative;
background: #fff;
2 years ago
box-shadow: 0 1px 4px rgba(0, 21, 41, 0.08);
2 years ago
.hamburger-container {
line-height: 46px;
height: 100%;
float: left;
cursor: pointer;
2 years ago
transition: background 0.3s;
-webkit-tap-highlight-color: transparent;
2 years ago
&:hover {
2 years ago
background: rgba(0, 0, 0, 0.025);
2 years ago
}
}
.breadcrumb-container {
float: left;
}
.right-menu {
float: right;
height: 100%;
line-height: 50px;
&:focus {
outline: none;
}
.right-menu-item {
display: inline-block;
padding: 0 8px;
height: 100%;
font-size: 18px;
color: #5a5e66;
vertical-align: text-bottom;
&.hover-effect {
cursor: pointer;
2 years ago
transition: background 0.3s;
2 years ago
&:hover {
2 years ago
background: rgba(0, 0, 0, 0.025);
2 years ago
}
}
}
.avatar-container {
margin-right: 30px;
.avatar-wrapper {
margin-top: 5px;
position: relative;
.user-avatar {
cursor: pointer;
width: 40px;
height: 40px;
border-radius: 10px;
}
.el-icon-caret-bottom {
cursor: pointer;
position: absolute;
right: -20px;
top: 25px;
font-size: 12px;
}
}
}
}
}
</style>