UserMenu.vue 7.3 KB
Newer Older
1
<template>
2
  <div class="user-wrapper" :class="theme">
JEECG低代码平台's avatar
JEECG低代码平台 已提交
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
    <!-- update_begin author:zhaoxin date:20191129 for: 做头部菜单栏导航 -->
    <!-- update-begin author:sunjianlei date:20191@20 for: 解决全局样式冲突的问题 -->
    <span class="action" @click="showClick">
      <a-icon type="search"></a-icon>
    </span>
    <span v-show="shows" class="borders">
      <a-select
        class="search-input"
        showSearch
        :showArrow="false"
        placeholder="搜索菜单"
        optionFilterProp="children"
        :filterOption="filterOption"
        @change="searchMethods"
        @blur="hiddenClick"
      >
        <a-select-option v-for="site in search " :value="site.id">{{site.meta.title}}</a-select-option>
      </a-select>
    </span>
    <!-- update-end author:sunjianlei date:20191@20 for: 解决全局样式冲突的问题 -->
    <!-- update_end  author:zhaoxin date:20191129 for: 做头部菜单栏导航 -->
24
    <span class="action">
25 26 27
      <a class="logout_title" target="_blank" href="http://jeecg-boot.mydoc.io">
        <a-icon type="question-circle-o"></a-icon>
      </a>
28 29 30
    </span>
    <header-notice class="action"/>
    <a-dropdown>
31
      <span class="action action-full ant-dropdown-link user-dropdown-menu">
32
        <a-avatar class="avatar" size="small" :src="getAvatar()"/>
33
        <span v-if="isDesktop()">欢迎您,{{ nickname() }}</span>
34 35 36 37 38 39 40 41 42
      </span>
      <a-menu slot="overlay" class="user-dropdown-menu-wrapper">
        <a-menu-item key="0">
          <router-link :to="{ name: 'account-center' }">
            <a-icon type="user"/>
            <span>个人中心</span>
          </router-link>
        </a-menu-item>
        <a-menu-item key="1">
43
          <router-link :to="{ name: 'account-settings-base' }">
44 45 46 47
            <a-icon type="setting"/>
            <span>账户设置</span>
          </router-link>
        </a-menu-item>
48 49 50 51 52
        <a-menu-item key="3"  @click="systemSetting">
           <a-icon type="tool"/>
           <span>系统设置</span>
        </a-menu-item>
        <a-menu-item key="4" @click="updatePassword">
53 54 55
          <a-icon type="setting"/>
          <span>密码修改</span>
        </a-menu-item>
56
        <a-menu-item key="5" @click="updateCurrentDepart">
57 58 59
          <a-icon type="cluster"/>
          <span>切换部门</span>
        </a-menu-item>
60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
       <!-- <a-menu-item key="2" disabled>
          <a-icon type="setting"/>
          <span>测试</span>
        </a-menu-item>
        <a-menu-divider/>
        <a-menu-item key="3">
          <a href="javascript:;" @click="handleLogout">
            <a-icon type="logout"/>
            <span>退出登录</span>
          </a>
        </a-menu-item>-->
      </a-menu>
    </a-dropdown>
    <span class="action">
      <a class="logout_title" href="javascript:;" @click="handleLogout">
        <a-icon type="logout"/>
76
        <span v-if="isDesktop()">&nbsp;退出登录</span>
77 78
      </a>
    </span>
79
    <user-password ref="userPassword"></user-password>
80
    <depart-select ref="departSelect" :closable="true" title="部门切换"></depart-select>
81
    <setting-drawer ref="settingDrawer" :closable="true" title="系统设置"></setting-drawer>
82 83 84 85 86
  </div>
</template>

<script>
  import HeaderNotice from './HeaderNotice'
87
  import UserPassword from './UserPassword'
88
  import SettingDrawer from "@/components/setting/SettingDrawer";
89
  import DepartSelect from './DepartSelect'
JEECG低代码平台's avatar
JEECG低代码平台 已提交
90
  import { mapActions, mapGetters,mapState } from 'vuex'
91
  import { mixinDevice } from '@/utils/mixin.js'
92

93 94
  export default {
    name: "UserMenu",
95
    mixins: [mixinDevice],
JEECG低代码平台's avatar
JEECG低代码平台 已提交
96 97 98 99 100 101 102
    data(){
      return{
        //菜单搜索
        search:[],
        shows:false
      }
    },
103
    components: {
104
      HeaderNotice,
105
      UserPassword,
106 107
      DepartSelect,
      SettingDrawer
108
    },
109 110 111 112 113 114 115
    props: {
      theme: {
        type: String,
        required: false,
        default: 'dark'
      }
    },
JEECG低代码平台's avatar
JEECG低代码平台 已提交
116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131
    /* update_begin author:zhaoxin date:20191129 for: 做头部菜单栏导航*/
    created() {
      let lists = []
      console.log("permissionMenuList: ",this.permissionMenuList)
      this.searchMenus(lists,this.permissionMenuList)
      this.search=[...lists]
      console.log(this.search)
    },
    computed: {
      ...mapState({
        // 后台菜单
        permissionMenuList: state => state.user.permissionList

      })
    },
    /* update_end author:zhaoxin date:20191129 for: 做头部菜单栏导航*/
132
    methods: {
JEECG低代码平台's avatar
JEECG低代码平台 已提交
133 134 135 136 137 138 139 140
      /* update_begin author:zhaoxin date:20191129 for: 做头部菜单栏导航*/
      showClick(){
        this.shows = !this.shows
      },
      hiddenClick(){
        this.shows = false
      },
      /* update_end author:zhaoxin date:20191129 for: 做头部菜单栏导航*/
141
      ...mapActions(["Logout"]),
142
      ...mapGetters(["nickname", "avatar","userInfo"]),
143
      getAvatar(){
144 145
        console.log('url = '+ window._CONFIG['imgDomainURL']+"/"+this.avatar())
        return window._CONFIG['imgDomainURL']+"/"+this.avatar()
146 147 148 149 150 151 152 153 154
      },
      handleLogout() {
        const that = this

        this.$confirm({
          title: '提示',
          content: '真的要注销登录吗 ?',
          onOk() {
            return that.Logout({}).then(() => {
155 156
                window.location.href="/";
              //window.location.reload()
157 158 159 160 161 162 163 164 165 166 167
            }).catch(err => {
              that.$message.error({
                title: '错误',
                description: err.message
              })
            })
          },
          onCancel() {
          },
        });
      },
168 169 170 171
      updatePassword(){
        let username = this.userInfo().username
        this.$refs.userPassword.show(username)
      },
172 173
      updateCurrentDepart(){
        this.$refs.departSelect.show()
174 175 176
      },
      systemSetting(){
        this.$refs.settingDrawer.showDrawer()
JEECG低代码平台's avatar
JEECG低代码平台 已提交
177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194
      },
      /* update_begin author:zhaoxin date:20191129 for: 做头部菜单栏导航*/
      searchMenus(arr,menus){
        for(let i of menus){
          if(!i.hidden && "layouts/RouteView"!==i.component){
           arr.push(i)
          }
          if(i.children&& i.children.length>0){
            this.searchMenus(arr,i.children)
          }
        }
      },
      filterOption(input, option) {
        return option.componentOptions.children[0].text.toLowerCase().indexOf(input.toLowerCase()) >= 0
      },
      searchMethods(value){
        let jump = this.search.filter(item=>item.id==value)
        this.$router.push({ path:jump[0].path})
195
      }
JEECG低代码平台's avatar
JEECG低代码平台 已提交
196
      /*update_end author:zhaoxin date:20191129 for: 做头部菜单栏导航*/
197 198 199 200
    }
  }
</script>

JEECG低代码平台's avatar
JEECG低代码平台 已提交
201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224
<style lang="scss" scoped>
  /* update_begin author:zhaoxin date:20191129 for: 让搜索框颜色能随主题颜色变换*/
  /* update-begin author:sunjianlei date:20191220 for: 解决全局样式冲突问题 */
  .user-wrapper .search-input {
    width: 180px;
    color: white;

    /deep/ {
      .ant-select-selection {
        background-color: inherit;
        border: 0;
        border-bottom: 1px solid white;
      }

      .ant-select-selection__placeholder,
      .ant-select-search__field__placeholder {
        color: inherit;
      }
    }
  }
  /* update-end author:sunjianlei date:20191220 for: 解决全局样式冲突问题 */
  /* update_end author:zhaoxin date:20191129 for: 让搜索框颜色能随主题颜色变换*/
</style>

225
<style scoped>
226 227 228
  .logout_title {
    color: inherit;
    text-decoration: none;
229 230
  }
</style>