| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- <template>
- <div class="header">
- <div class="logo">后台管理系统</div>
- <div class="user-info">
- <el-dropdown trigger="click" @command="handleCommand">
- <span class="el-dropdown-link">
- <img class="user-logo" src="../../../static/img/img.jpg">
- {{username}}
- </span>
- <el-dropdown-menu slot="dropdown">
- <el-dropdown-item command="loginout">退出</el-dropdown-item>
- </el-dropdown-menu>
- </el-dropdown>
- </div>
- </div>
- </template>
- <script>
- export default {
- data() {
- return {
- name: 'linxin'
- }
- },
- computed:{
- username(){
- let username = localStorage.getItem('ms_username');
- return username ? username : this.name;
- }
- },
- methods:{
- handleCommand(command) {
- if(command == 'loginout'){
- localStorage.removeItem('ms_username')
- this.$router.push('/login');
- }
- }
- }
- }
- </script>
- <style scoped>
- .header {
- position: relative;
- box-sizing: border-box;
- width: 100%;
- height: 70px;
- font-size: 22px;
- line-height: 70px;
- color: #fff;
- }
- .header .logo{
- float: left;
- width:250px;
- text-align: center;
- }
- .user-info {
- float: right;
- padding-right: 50px;
- font-size: 16px;
- color: #fff;
- }
- .user-info .el-dropdown-link{
- position: relative;
- display: inline-block;
- padding-left: 50px;
- color: #fff;
- cursor: pointer;
- vertical-align: middle;
- }
- .user-info .user-logo{
- position: absolute;
- left:0;
- top:15px;
- width:40px;
- height:40px;
- border-radius: 50%;
- }
- .el-dropdown-menu__item{
- text-align: center;
- }
- </style>
|