openerp/jshERP-web/src/components/tools/UserMenu.vue

257 lines
9.4 KiB
Java
Raw Normal View History

2021-04-07 23:53:57 +08:00
<template>
<div class="user-wrapper" :class="theme">
2021-10-17 22:56:40 +08:00
<span class="action" v-if="showAd">
2021-12-16 23:50:08 +08:00
<a v-if="theme==='light'" class="ad_title" target="_blank" :href="payFeeUrl">
2021-10-17 23:25:18 +08:00
<a-icon type="cloud" theme="filled" style="color: yellow; font-size: 16px; line-height: 16px;" />
2023-10-11 00:20:08 +08:00
<span>华夏ERP网络版158元1年</span>
2021-10-17 22:56:40 +08:00
</a>
</span>
2021-04-07 23:53:57 +08:00
<!-- 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>
2021-04-07 23:53:57 +08:00
<!-- update-begin author:sunjianlei date:20200219 for: 菜单搜索改为动态组件在手机端呈现出弹出框 -->
<component :is="searchMenuComp" v-show="searchMenuVisible || isMobile()" class="borders" :visible="searchMenuVisible" title="搜索菜单" :footer="null" @cancel="searchMenuVisible=false">
<a-select
class="search-input"
showSearch
:showArrow="false"
placeholder="搜索菜单"
optionFilterProp="children"
:filterOption="filterOption"
:open="isMobile()?true:null"
:getPopupContainer="(node) => node.parentNode"
:style="isMobile()?{width: '100%',marginBottom:'50px'}:{}"
@change="searchMethods"
@blur="hiddenClick"
>
<a-select-option v-for="(site,index) in searchMenuOptions" :key="index" :value="site.id">{{site.text}}</a-select-option>
</a-select>
</component>
2021-04-07 23:53:57 +08:00
<!-- update-end author:sunjianlei date:20200219 for: 菜单搜索改为动态组件在手机端呈现出弹出框 -->
<!-- update-end author:sunjianlei date:20191220 for: 解决全局样式冲突的问题 -->
<!-- update_end author:zhaoxin date:20191129 for: 做头部菜单栏导航 -->
2021-05-21 22:53:48 +08:00
<span class="action">
2021-08-22 17:56:34 +08:00
<a-tooltip>
<template slot="title">官方网站</template>
<a target="_blank" :href="systemUrl">
<a-icon type="bank" style="font-size: 16px;" />
</a>
</a-tooltip>
2021-04-07 23:53:57 +08:00
</span>
<header-notice class="action"/>
<a-dropdown>
<span v-if="isDesktop()" class="action ant-dropdown-link user-dropdown-menu">
<a-icon type="down-circle"/>
<span style="margin-left:4px">欢迎您{{ nickname() }}</span>
2021-04-07 23:53:57 +08:00
</span>
<a-menu slot="overlay" class="user-dropdown-menu-wrapper">
<a-menu-item key="3" @click="systemSetting">
<a-icon type="tool"/>
2021-06-09 23:31:27 +08:00
<span>界面设置</span>
2021-04-07 23:53:57 +08:00
</a-menu-item>
<a-menu-item key="4" @click="updatePassword">
<a-icon type="setting"/>
<span>密码修改</span>
</a-menu-item>
</a-menu>
</a-dropdown>
<span class="action">
<a class="logout_title" href="javascript:;" @click="handleLogout">
<a-icon type="logout"/>
<span>&nbsp;退出登录</span>
2021-04-07 23:53:57 +08:00
</a>
</span>
<user-password ref="userPassword"></user-password>
<depart-select ref="departSelect" :closable="true" title="部门切换"></depart-select>
<setting-drawer ref="settingDrawer" :closable="true" title="系统设置"></setting-drawer>
</div>
</template>
<script>
import HeaderNotice from './HeaderNotice'
import UserPassword from './UserPassword'
import SettingDrawer from "@/components/setting/SettingDrawer";
import DepartSelect from './DepartSelect'
import { mapActions, mapGetters,mapState } from 'vuex'
import { mixinDevice } from '@/utils/mixin.js'
2021-06-19 21:58:04 +08:00
import { getFileAccessHttpUrl,getAction } from "@/api/manage"
2021-10-17 22:56:40 +08:00
import { getPlatformConfigByKey } from '@/api/api'
2021-04-07 23:53:57 +08:00
export default {
name: "UserMenu",
mixins: [mixinDevice],
data(){
return{
// update-begin author:sunjianlei date:20200219 for: 头部菜单搜索规范命名 --------------
searchMenuOptions:[],
searchMenuComp: 'span',
searchMenuVisible: false,
2021-06-19 22:18:41 +08:00
systemUrl: window.SYS_URL,
2021-10-17 22:56:40 +08:00
showAd: false,
payFeeUrl: ''
2021-04-07 23:53:57 +08:00
// update-begin author:sunjianlei date:20200219 for: 头部菜单搜索规范命名 --------------
}
},
components: {
HeaderNotice,
UserPassword,
DepartSelect,
SettingDrawer
},
props: {
theme: {
type: String,
required: false,
default: 'dark'
}
},
/* update_begin author:zhaoxin date:20191129 for: 做头部菜单栏导航*/
created() {
let lists = []
this.searchMenus(lists,this.permissionMenuList)
this.searchMenuOptions=[...lists]
2021-06-19 21:58:04 +08:00
this.isShowAd()
2021-04-07 23:53:57 +08:00
},
computed: {
...mapState({
// 后台菜单
permissionMenuList: state => state.user.permissionList
})
},
/* update_end author:zhaoxin date:20191129 for: 做头部菜单栏导航*/
watch: {
// update-begin author:sunjianlei date:20200219 for: 菜单搜索改为动态组件,在手机端呈现出弹出框
device: {
immediate: true,
handler() {
this.searchMenuVisible = false
this.searchMenuComp = this.isMobile() ? 'a-modal' : 'span'
},
},
// update-end author:sunjianlei date:20200219 for: 菜单搜索改为动态组件,在手机端呈现出弹出框
},
methods: {
/* update_begin author:zhaoxin date:20191129 for: 做头部菜单栏导航*/
showClick() {
this.searchMenuVisible = true
},
hiddenClick(){
this.shows = false
},
/* update_end author:zhaoxin date:20191129 for: 做头部菜单栏导航*/
...mapActions(["Logout"]),
2021-06-09 23:31:27 +08:00
...mapGetters(["nickname","loginName","userInfo"]),
2021-04-07 23:53:57 +08:00
// getAvatar(){
// return getFileAccessHttpUrl(this.avatar())
// },
handleLogout() {
const that = this
this.$confirm({
title: '提示',
2023-08-09 00:32:18 +08:00
content: '真的要退出登录吗 ?',
2021-04-07 23:53:57 +08:00
onOk() {
return that.Logout({}).then(() => {
window.location.href="/";
//window.location.reload()
}).catch(err => {
that.$message.error({
title: '错误',
description: err.message
})
})
},
onCancel() {
},
});
},
updatePassword(){
let userId = this.userInfo().id
this.$refs.userPassword.show(userId)
},
systemSetting(){
this.$refs.settingDrawer.showDrawer()
},
/* update_begin author:zhaoxin date:20191129 for: 做头部菜单栏导航*/
searchMenus(arr,menus){
for(let i of menus){
if("/layouts/RouteView"!==i.component && "/layouts/TabLayout"!==i.component){
arr.push(i)
2021-04-07 23:53:57 +08:00
}
if(i.children&& i.children.length>0){
this.searchMenus(arr,i.children)
}
}
},
filterOption(input, option) {
if(option && option.componentOptions && option.componentOptions.children && option.componentOptions.children[0]) {
return option.componentOptions.children[0].text.toLowerCase().indexOf(input.toLowerCase()) >= 0
}
2021-04-07 23:53:57 +08:00
},
// update_begin author:sunjianlei date:20191230 for: 解决外部链接打开失败的问题
searchMethods(value) {
let route = this.searchMenuOptions.filter(item => item.id === value)[0]
this.$emit("searchGlobalHeader",route.url, route.id, route.text, route.component)
2021-04-07 23:53:57 +08:00
this.searchMenuVisible = false
2021-06-19 21:58:04 +08:00
},
2021-04-07 23:53:57 +08:00
// update_end author:sunjianlei date:20191230 for: 解决外部链接打开失败的问题
/*update_end author:zhaoxin date:20191129 for: 做头部菜单栏导航*/
2021-06-19 21:58:04 +08:00
isShowAd() {
2021-10-17 23:25:18 +08:00
//只有配置了租户续费地址和试用租户才显示广告
2021-10-17 22:56:40 +08:00
getPlatformConfigByKey({"platformKey": "pay_fee_url"}).then((res)=> {
2021-06-19 21:58:04 +08:00
if (res && res.code === 200) {
2021-10-17 22:56:40 +08:00
let payFeeUrl = res.data.platformValue
if(payFeeUrl) {
2021-10-17 23:25:18 +08:00
getAction("/user/infoWithTenant",{}).then(res=> {
if (res && res.code === 200) {
let tenant = res.data
if(tenant && tenant.type === '0') {
if(!this.isMobile()) {
//pc端才显示
this.showAd = true
this.payFeeUrl = payFeeUrl
}
}
}
})
2021-10-17 22:56:40 +08:00
}
2021-06-19 21:58:04 +08:00
}
})
}
2021-04-07 23:53:57 +08:00
}
}
</script>
<style lang="less" scoped>
/* update_begin author:zhaoxin date:20191129 for: 让搜索框颜色能随主题颜色变换*/
/* update-begin author:sunjianlei date:20191220 for: 解决全局样式冲突问题 */
.user-wrapper .search-input {
width: 180px;
color: inherit;
/deep/ .ant-select-selection {
background-color: inherit;
border: 0;
border-bottom: 1px solid white;
&__placeholder, &__field__placeholder {
color: inherit;
}
}
}
/* update-end author:sunjianlei date:20191220 for: 解决全局样式冲突问题 */
/* update_end author:zhaoxin date:20191129 for: 让搜索框颜色能随主题颜色变换*/
</style>
<style scoped>
2021-10-17 22:56:40 +08:00
.ad_title {
color: yellow;
2021-05-21 22:53:48 +08:00
text-decoration: none;
}
2021-04-07 23:53:57 +08:00
.logout_title {
color: inherit;
text-decoration: none;
}
</style>