Blame view

src/layout/components/Navbar.vue 4.75 KB
赵千 committed
1
<template>
任超 committed
2
  <div class="navbar" v-theme.background="mTheme">
任超 committed
3 4 5
    <div class="logo">
      <img v-if="logo" :src="logo" class="header-logo">
    </div>
任超 committed
6 7 8
    <div class="backdrop">
      <theme style="float: right;height: 26px;width: 26px;margin-top: 26px;" @change="themeChange" />
    </div>
赵千 committed
9
    <div class="right-menu">
任超 committed
10
      <el-dropdown class="avatar-container right-menu-item hover-effect" @command="handleCommand">
赵千 committed
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
        <div class="avatar-wrapper">
          <span style="padding-right:10px">{{ name }}</span>
          <img :src="avatar + '?imageView2/1/w/80/h/80'" class="user-avatar" />
        </div>
        <el-dropdown-menu slot="dropdown">
          <el-dropdown-item command="a">个人中心</el-dropdown-item>
          <el-dropdown-item command="f">退出登录</el-dropdown-item>
        </el-dropdown-menu>
      </el-dropdown>
    </div>
  </div>
</template>
<script>
import { mapGetters } from 'vuex'
export default {
  computed: {
    ...mapGetters(['sidebar', 'avatar', 'name'])
  },
任超 committed
29 30
  data () {
    return {
任超 committed
31
      logo: require('../../image/logo.png')
任超 committed
32 33
    }
  },
赵千 committed
34
  methods: {
任超 committed
35 36 37
    themeChange (val) {
      this.$store.dispatch('app/updateTheme', val)
    },
赵千 committed
38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91
    searchMessageCenter () {
      this.$router.push({ name: 'messagecenter' })
    },
    handleCommand (command) {
      if (command == 'a') {
        //个人中心
        this.$router.push({ name: 'personal' })
      } else if (command == 'f') {
        // 退出
        this.$store.dispatch('user/logout')
        this.$router.push(`/login?redirect=${this.$route.fullPath}`)
        window.sessionStorage.clear()
      }
    }
  }
}
</script>
<style lang="scss" scoped>
.el-dropdown-menu {
  padding: 0 !important;
  border: 1px solid #EBEEF5;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  border-radius: 4px 0 0 4px 4px;

  .el-dropdown-menu__item {
    text-align: center;
    margin-top: 0 !important;
    font-size: 14px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: #4A4A4A;
    width: 140px;
    height: 36px;
    line-height: 36px;
  }

  .el-dropdown-menu__item:nth-child(6) {
    border-top: 1px solid #EBEEF5;
  }

  .popper__arrow {
    top: -11px !important;
    left: 110px !important;
    transform: rotate(0deg) scale(2);
  }

  .el-dropdown-menu__item:not(.is-disabled):hover,
  .el-dropdown-menu__item:focus {
    background: #F6F7F9;
    color: #4A4A4A;
  }
}

.navbar {
任超 committed
92
  height: $headerHeight;
赵千 committed
93 94 95
  overflow: hidden;
  position: relative;
  background: #fff;
任超 committed
96
  // background: linear-gradient(270deg, #148CEE 0%, #1870E3 100%); //默认颜色
赵千 committed
97
  box-shadow: 0 1px 0px rgba(0, 21, 41, 0.08);
任超 committed
98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113
  display: flex;
  align-items: center;
  padding: 0 20px;
  justify-content: space-between;

  .header-logo {
    width: 300px;
  }

  .backdrop {
    flex: 1;
    width: 60%;
    background: url('../../image/backdrop.png');
    background-size: 100% 100%;
    height: $headerHeight;
  }
赵千 committed
114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169

  .hamburger-container {
    line-height: 43px;
    height: 100%;
    float: left;
    cursor: pointer;
    transition: background 0.3s;
    -webkit-tap-highlight-color: transparent;

    &:hover {
      background: rgba(0, 0, 0, 0.025);
    }
  }

  .breadcrumb-container {
    float: left;
  }

  .right-menu {
    float: right;
    height: 100%;
    line-height: 50px;

    .organization-item {
      margin-right: 40px;
      margin-top: -40px !important;
    }

    .item {
      margin-right: 40px;
      margin-top: -20px;
      line-height: 18.4px;
      cursor: pointer;
      position: relative;

      .item-box {
        position: absolute;
        top: -5px;
        left: 3px;
        width: 100%;
        min-width: 25px;
        height: 25px;
        cursor: pointer;
        z-index: 100;
      }
    }

    &:focus {
      outline: none;
    }

    .right-menu-item {
      display: inline-block;
      padding: 0 8px;
      height: 100%;
      font-size: 18px;
任超 committed
170
      color: #fff;
赵千 committed
171 172 173 174 175
      vertical-align: text-bottom;

      &.hover-effect {
        cursor: pointer;
        transition: background 0.3s;
任超 committed
176 177
        display: flex;
        align-items: center;
赵千 committed
178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220

        &:hover {
          background: rgba(0, 0, 0, 0.025);
        }
      }
    }

    .avatar-container {
      .avatar-wrapper {
        position: relative;
        display: flex;
        height: 40px;
        align-items: center;

        .user-avatar {
          cursor: pointer;
          width: 35px;
          height: 35px;
          border-radius: 50%;
        }

        .el-icon-caret-bottom {
          cursor: pointer;
          position: absolute;
          right: -15px;
          top: 17px;
          font-size: 12px;
        }
      }
    }
  }

  /*2.隐藏滚动条,太丑了*/
  .el-drawer__container ::-webkit-scrollbar {
    display: none;

  }

  .el-form-item--small .el-form-item__label {
    width: 80px !important;
  }
}
</style>