UserMenu.vue 3.6 KB
Newer Older
1
<template>
2
  <div class="user-wrapper" :class="theme">
3
    <span class="action">
4 5 6
      <a class="logout_title" target="_blank" href="http://jeecg-boot.mydoc.io">
        <a-icon type="question-circle-o"></a-icon>
      </a>
7 8 9
    </span>
    <header-notice class="action"/>
    <a-dropdown>
10
      <span class="action action-full ant-dropdown-link user-dropdown-menu">
11
        <a-avatar class="avatar" size="small" :src="getAvatar()"/>
12
        <span v-if="isDesktop()">欢迎您,{{ nickname() }}</span>
13 14 15 16 17 18 19 20 21
      </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">
22
          <router-link :to="{ name: 'account-settings-base' }">
23 24 25 26
            <a-icon type="setting"/>
            <span>账户设置</span>
          </router-link>
        </a-menu-item>
27 28 29 30
        <a-menu-item key="2" @click="updatePassword">
          <a-icon type="setting"/>
          <span>密码修改</span>
        </a-menu-item>
31 32 33 34
        <a-menu-item key="3" @click="updateCurrentDepart">
          <a-icon type="cluster"/>
          <span>切换部门</span>
        </a-menu-item>
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
       <!-- <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"/>
51
        <span v-if="isDesktop()">&nbsp;退出登录</span>
52 53
      </a>
    </span>
54
    <user-password ref="userPassword"></user-password>
55
    <depart-select ref="departSelect" :closable="true" title="部门切换"></depart-select>
56 57 58 59 60
  </div>
</template>

<script>
  import HeaderNotice from './HeaderNotice'
61
  import UserPassword from './UserPassword'
62
  import DepartSelect from './DepartSelect'
63
  import { mapActions, mapGetters } from 'vuex'
64
  import { mixinDevice } from '@/utils/mixin.js'
65

66 67
  export default {
    name: "UserMenu",
68
    mixins: [mixinDevice],
69
    components: {
70
      HeaderNotice,
71 72
      UserPassword,
      DepartSelect
73
    },
74 75 76 77 78 79 80
    props: {
      theme: {
        type: String,
        required: false,
        default: 'dark'
      }
    },
81 82
    methods: {
      ...mapActions(["Logout"]),
83
      ...mapGetters(["nickname", "avatar","userInfo"]),
84
      getAvatar(){
85 86
        console.log('url = '+ window._CONFIG['imgDomainURL']+"/"+this.avatar())
        return window._CONFIG['imgDomainURL']+"/"+this.avatar()
87 88 89 90 91 92 93 94 95
      },
      handleLogout() {
        const that = this

        this.$confirm({
          title: '提示',
          content: '真的要注销登录吗 ?',
          onOk() {
            return that.Logout({}).then(() => {
96 97
                window.location.href="/";
              //window.location.reload()
98 99 100 101 102 103 104 105 106 107 108
            }).catch(err => {
              that.$message.error({
                title: '错误',
                description: err.message
              })
            })
          },
          onCancel() {
          },
        });
      },
109 110 111 112
      updatePassword(){
        let username = this.userInfo().username
        this.$refs.userPassword.show(username)
      },
113 114 115
      updateCurrentDepart(){
        this.$refs.departSelect.show()
      }
116 117 118 119 120
    }
  }
</script>

<style scoped>
121 122 123
  .logout_title {
    color: inherit;
    text-decoration: none;
124 125
  }
</style>