123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333 |
- <template>
- <div class="navbar">
- <logo v-if="showLogo" :collapse="isCollapse" />
- <hamburger id="hamburger-container" :is-active="appStore.sidebar.opened" class="hamburger-container" @toggle-click="toggleSideBar" />
- <!-- <breadcrumb v-if="!settingsStore.topNav" id="breadcrumb-container" class="breadcrumb-container" />-->
- <top-nav v-if="settingsStore.topNav" id="topmenu-container" class="topmenu-container" />
- <div class="right-menu flex align-center">
- <template v-if="appStore.device !== 'mobile'">
- <!-- <el-select-->
- <!-- v-if="userId === 1 && tenantEnabled"-->
- <!-- v-model="companyName"-->
- <!-- class="min-w-244px"-->
- <!-- clearable-->
- <!-- filterable-->
- <!-- reserve-keyword-->
- <!-- :placeholder="$t('navbar.selectTenant')"-->
- <!-- @change="dynamicTenantEvent"-->
- <!-- @clear="dynamicClearEvent"-->
- <!-- >-->
- <!-- <el-option v-for="item in tenantList" :key="item.tenantId" :label="item.companyName" :value="item.tenantId"> </el-option>-->
- <!-- <template #prefix><svg-icon icon-class="company" class="el-input__icon input-icon" /></template>-->
- <!-- </el-select>-->
- <!-- <header-search id="header-search" class="right-menu-item" /> -->
- <search-menu ref="searchMenuRef" />
- <el-tooltip content="搜索" effect="dark" placement="bottom">
- <div class="right-menu-item hover-effect" @click="openSearchMenu">
- <div class="search-icon" />
- </div>
- </el-tooltip>
- <!-- 消息 -->
- <el-tooltip :content="$t('navbar.message')" effect="dark" placement="bottom">
- <div style="margin: 12px">
- <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="message" />
- </el-badge>
- </template>
- <template #default>
- <notice></notice>
- </template>
- </el-popover>
- </div>
- </el-tooltip>
- <!-- <el-tooltip :content="$t('navbar.full')" effect="dark" placement="bottom">-->
- <!-- <screenfull id="screenfull" class="right-menu-item hover-effect" />-->
- <!-- </el-tooltip>-->
- <!-- <el-tooltip :content="$t('navbar.language')" effect="dark" placement="bottom">-->
- <!-- <lang-select id="lang-select" class="right-menu-item hover-effect" />-->
- <!-- </el-tooltip>-->
- <!-- <el-tooltip :content="$t('navbar.layoutSize')" effect="dark" placement="bottom">-->
- <!-- <size-select id="size-select" class="right-menu-item hover-effect" />-->
- <!-- </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" />
- <span>{{ nickName }}</span>
- <el-icon><caret-bottom /></el-icon>
- </div>
- <template #dropdown>
- <el-dropdown-menu>
- <router-link v-if="!dynamic" to="/user/profile">
- <el-dropdown-item>{{ $t('navbar.personalCenter') }}</el-dropdown-item>
- </router-link>
- <!-- <el-dropdown-item v-if="settingsStore.showSettings" command="setLayout">-->
- <!-- <span>{{ $t('navbar.layoutSetting') }}</span>-->
- <!-- </el-dropdown-item>-->
- <el-dropdown-item divided command="logout">
- <span>{{ $t('navbar.logout') }}</span>
- </el-dropdown-item>
- </el-dropdown-menu>
- </template>
- </el-dropdown>
- </div>
- </div>
- </div>
- </template>
- <script setup lang="ts">
- import Logo from './Sidebar/Logo.vue';
- import SearchMenu from './TopBar/search.vue';
- 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 { getTenantList } from '@/api/login';
- import { dynamicClear, dynamicTenant } from '@/api/system/tenant';
- import { TenantVO } from '@/api/types';
- import notice from './notice/index.vue';
- const appStore = useAppStore();
- const userStore = useUserStore();
- const settingsStore = useSettingsStore();
- const noticeStore = storeToRefs(useNoticeStore());
- const newNotice = ref(<number>0);
- const showLogo = computed(() => settingsStore.sidebarLogo);
- const isCollapse = computed(() => !appStore.sidebar.opened);
- const nickName = computed(() => userStore.nickname);
- const { proxy } = getCurrentInstance() as ComponentInternalInstance;
- const userId = ref(userStore.userId);
- const companyName = ref(undefined);
- const tenantList = ref<TenantVO[]>([]);
- // 是否切换了租户
- const dynamic = ref(false);
- // 租户开关
- const tenantEnabled = ref(true);
- // 搜索菜单
- const searchMenuRef = ref<InstanceType<typeof SearchMenu>>();
- const openSearchMenu = () => {
- searchMenuRef.value?.openSearch();
- };
- // 动态切换
- const dynamicTenantEvent = async (tenantId: string) => {
- if (companyName.value != null && companyName.value !== '') {
- await dynamicTenant(tenantId);
- dynamic.value = true;
- proxy?.$tab.closeAllPage();
- proxy?.$router.push('/');
- }
- };
- const dynamicClearEvent = async () => {
- await dynamicClear();
- dynamic.value = false;
- proxy?.$tab.closeAllPage();
- proxy?.$router.push('/');
- };
- /** 租户列表 */
- const initTenantList = async () => {
- // const { data } = await getTenantList();
- // tenantEnabled.value = data.tenantEnabled === undefined ? true : data.tenantEnabled;
- // if (tenantEnabled.value) {
- // tenantList.value = data.voList;
- // }
- };
- defineExpose({
- initTenantList
- });
- const toggleSideBar = () => {
- appStore.toggleSideBar(false);
- };
- const logout = async () => {
- await ElMessageBox.confirm('确定注销并退出系统吗?', '提示', {
- confirmButtonText: '确定',
- cancelButtonText: '取消',
- type: 'warning'
- });
- await userStore.logout();
- location.href = import.meta.env.VITE_APP_CONTEXT_PATH + 'index';
- };
- const emits = defineEmits(['setLayout']);
- const setLayout = () => {
- emits('setLayout');
- };
- // 定义Command方法对象 通过key直接调用方法
- const commandMap: { [key: string]: any } = {
- setLayout,
- logout
- };
- 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>
- :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: url('@/assets/images/header.png') no-repeat;
- //background-size: 100% 100%;
- background-image: linear-gradient(to bottom #e6e6e6 0%, #e0e3e7 100%);
- box-shadow: 0 1px 6px rgba(0, 21, 41, 0.12);
- position: relative;
- &::before {
- content: '';
- width: 163px;
- height: 34px;
- background: url('@/assets/images/city.png') no-repeat;
- background-size: 100% 100%;
- position: absolute;
- bottom: 0;
- left: 0;
- }
- &::after {
- content: '';
- width: 163px;
- height: 34px;
- background: url('@/assets/images/city.png') no-repeat;
- background-size: 100% 100%;
- position: absolute;
- bottom: 0;
- right: 0;
- }
- .hamburger-container {
- line-height: 50px;
- 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;
- }
- .topmenu-container {
- position: absolute;
- left: 50px;
- }
- .errLog-container {
- display: inline-block;
- vertical-align: top;
- }
- .right-menu {
- float: right;
- height: 100%;
- display: flex;
- &:focus {
- outline: none;
- }
- .right-menu-item {
- display: inline-block;
- padding: 0 12px;
- //height: 100%;
- font-size: 18px;
- color: #5a5e66;
- vertical-align: text-bottom;
- &.hover-effect {
- cursor: pointer;
- transition: background 0.3s;
- &:hover {
- background: rgba(0, 0, 0, 0.025);
- }
- }
- }
- .avatar-container {
- margin-right: 30px;
- .avatar-wrapper {
- margin-top: 5px;
- position: relative;
- display: flex;
- align-items: center;
- font-size: 14px;
- height: 100%;
- .user-avatar {
- cursor: pointer;
- width: 24px;
- height: 24px;
- border-radius: 50%;
- margin: 12px;
- }
- i {
- cursor: pointer;
- //position: absolute;
- //right: -20px;
- //top: 25px;
- font-size: 12px;
- }
- }
- }
- }
- }
- .search-icon {
- width: 17px;
- height: 16px;
- background: url('@/assets/images/search.png') no-repeat;
- background-size: 100% 100%;
- }
- .message {
- width: 17px;
- height: 16px;
- background: url('@/assets/images/message.png') no-repeat;
- background-size: 100% 100%;
- }
- </style>
|