261 lines
6.5 KiB
Vue
261 lines
6.5 KiB
Vue
<template>
|
|
<div class="navbar" :class="'nav' + navType">
|
|
<!-- <hamburger id="hamburger-container" :is-active="appStore.sidebar.opened" class="hamburger-container" @toggle-click="toggleSideBar" /> -->
|
|
<!-- <breadcrumb v-if="navType == NavTypeEnum.LEFT" id="breadcrumb-container" class="breadcrumb-container" /> -->
|
|
<div class="right-menu flex align-center">
|
|
<template v-if="appStore.device !== 'mobile'">
|
|
<!-- 消息 -->
|
|
<el-tooltip :content="proxy.$t('navbar.message')" effect="dark" placement="bottom">
|
|
<div>
|
|
<el-popover placement="bottom" trigger="click" transition="el-zoom-in-top" :width="300" :persistent="false">
|
|
<template #reference>
|
|
<el-badge :value="newNotice > 0 ? newNotice : ''" :max="99">
|
|
<div class="right-menu-item hover-effect" style="display: block"><svg-icon icon-class="message" /></div>
|
|
</el-badge>
|
|
</template>
|
|
<template #default>
|
|
<notice></notice>
|
|
</template>
|
|
</el-popover>
|
|
</div>
|
|
</el-tooltip>
|
|
</template>
|
|
<div class="avatar-container">
|
|
<el-dropdown class="right-menu-item hover-effect" trigger="click" @command="handleCommand">
|
|
<div class="avatar-wrapper">
|
|
<img :src="userStore.avatar" class="user-avatar" />
|
|
<el-icon><caret-bottom /></el-icon>
|
|
</div>
|
|
<template #dropdown>
|
|
<el-dropdown-menu>
|
|
<el-dropdown-item divided command="changecommunity">
|
|
<span>{{ proxy.$t('navbar.community') }}</span>
|
|
</el-dropdown-item>
|
|
<router-link v-if="!dynamic" to="/user/profile">
|
|
<el-dropdown-item>{{ proxy.$t('navbar.personalCenter') }}</el-dropdown-item>
|
|
</router-link>
|
|
<el-dropdown-item v-if="settingsStore.showSettings" command="setLayout">
|
|
<span>{{ proxy.$t('navbar.layoutSetting') }}</span>
|
|
</el-dropdown-item>
|
|
<el-dropdown-item divided command="logout">
|
|
<span>{{ proxy.$t('navbar.logout') }}</span>
|
|
</el-dropdown-item>
|
|
</el-dropdown-menu>
|
|
</template>
|
|
</el-dropdown>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { useAppStore } from '@/store/modules/app';
|
|
import { useUserStore } from '@/store/modules/user';
|
|
import { useSettingsStore } from '@/store/modules/settings';
|
|
import { useNoticeStore } from '@/store/modules/notice';
|
|
import notice from './notice/index.vue';
|
|
import router from '@/router';
|
|
import { ElMessageBoxOptions } from 'element-plus/es/components/message-box/src/message-box.type';
|
|
|
|
const appStore = useAppStore();
|
|
const userStore = useUserStore();
|
|
const settingsStore = useSettingsStore();
|
|
const noticeStore = storeToRefs(useNoticeStore());
|
|
const newNotice = ref(<number>0);
|
|
|
|
const { proxy } = getCurrentInstance() as ComponentInternalInstance;
|
|
|
|
const navType = computed(() => settingsStore.navType);
|
|
|
|
// 是否切换了租户
|
|
const dynamic = ref(true);
|
|
|
|
// const toggleSideBar = () => {
|
|
// appStore.toggleSideBar(false);
|
|
// };
|
|
|
|
const logout = async () => {
|
|
await ElMessageBox.confirm('确定注销并退出系统吗?', '提示', {
|
|
confirmButtonText: '确定',
|
|
cancelButtonText: '取消',
|
|
type: 'warning'
|
|
} as ElMessageBoxOptions);
|
|
userStore.logout().then(() => {
|
|
router.replace({
|
|
path: '/login',
|
|
query: {
|
|
redirect: encodeURIComponent(router.currentRoute.value.fullPath || '/')
|
|
}
|
|
});
|
|
proxy?.$tab.closeAllPage();
|
|
});
|
|
};
|
|
|
|
const routerPush = useRouter();
|
|
const changecommunity = () => {
|
|
console.log('change community');
|
|
routerPush.push({
|
|
path: '/community'
|
|
});
|
|
};
|
|
|
|
const emits = defineEmits(['setLayout']);
|
|
const setLayout = () => {
|
|
emits('setLayout');
|
|
};
|
|
// 定义Command方法对象 通过key直接调用方法
|
|
const commandMap: { [key: string]: any } = {
|
|
setLayout,
|
|
logout,
|
|
changecommunity
|
|
};
|
|
const handleCommand = (command: string) => {
|
|
// 判断是否存在该方法
|
|
if (commandMap[command]) {
|
|
commandMap[command]();
|
|
}
|
|
};
|
|
//用深度监听 消息
|
|
watch(
|
|
() => noticeStore.state.value.notices,
|
|
(newVal) => {
|
|
newNotice.value = newVal.filter((item: any) => !item.read).length;
|
|
},
|
|
{ deep: true }
|
|
);
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.navbar.navtop {
|
|
.hamburger-container {
|
|
display: none !important;
|
|
}
|
|
}
|
|
|
|
:deep(.el-select .el-input__wrapper) {
|
|
height: 30px;
|
|
}
|
|
|
|
:deep(.el-badge__content.is-fixed) {
|
|
top: 12px;
|
|
}
|
|
|
|
.flex {
|
|
display: flex;
|
|
}
|
|
|
|
.align-center {
|
|
align-items: center;
|
|
}
|
|
|
|
.navbar {
|
|
height: 50px;
|
|
overflow: hidden;
|
|
position: relative;
|
|
background: var(--el-bg-color);
|
|
border-bottom: 1px solid var(--el-border-color-lighter);
|
|
box-shadow: none;
|
|
display: flex;
|
|
align-items: center;
|
|
// padding: 0 8px;
|
|
box-sizing: border-box;
|
|
|
|
.hamburger-container {
|
|
line-height: 46px;
|
|
height: 100%;
|
|
//float: left;
|
|
cursor: pointer;
|
|
transition: background 0.3s;
|
|
-webkit-tap-highlight-color: transparent;
|
|
display: flex;
|
|
align-items: center;
|
|
flex-shrink: 0;
|
|
margin-right: 8px;
|
|
|
|
&:hover {
|
|
background: var(--el-fill-color-lighter);
|
|
}
|
|
}
|
|
|
|
.breadcrumb-container {
|
|
//float: left;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.topmenu-container {
|
|
position: absolute;
|
|
left: 50px;
|
|
}
|
|
|
|
.topbar-container {
|
|
flex: 1;
|
|
min-width: 0;
|
|
display: flex;
|
|
align-items: center;
|
|
overflow: hidden;
|
|
margin-left: 8px;
|
|
}
|
|
|
|
.errLog-container {
|
|
display: inline-block;
|
|
vertical-align: top;
|
|
}
|
|
|
|
.right-menu {
|
|
//float: right;
|
|
height: 100%;
|
|
line-height: 50px;
|
|
display: flex;
|
|
align-items: center;
|
|
margin-left: auto;
|
|
|
|
&:focus {
|
|
outline: none;
|
|
}
|
|
|
|
.right-menu-item {
|
|
display: inline-block;
|
|
padding: 0 8px;
|
|
height: 100%;
|
|
font-size: 18px;
|
|
color: var(--el-text-color-regular);
|
|
vertical-align: text-bottom;
|
|
|
|
&.hover-effect {
|
|
cursor: pointer;
|
|
transition: background 0.3s;
|
|
|
|
&:hover {
|
|
background: var(--el-fill-color-lighter);
|
|
}
|
|
}
|
|
}
|
|
|
|
.avatar-container {
|
|
margin-right: 40px;
|
|
|
|
.avatar-wrapper {
|
|
margin-top: 5px;
|
|
position: relative;
|
|
|
|
.user-avatar {
|
|
cursor: pointer;
|
|
width: 40px;
|
|
height: 40px;
|
|
border-radius: var(--app-radius-md);
|
|
margin-top: 10px;
|
|
}
|
|
|
|
i {
|
|
cursor: pointer;
|
|
position: absolute;
|
|
right: -20px;
|
|
top: 25px;
|
|
font-size: 12px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</style>
|