| | |
| | | <template> |
| | | <div class="navbar"> |
| | | <hamburger id="hamburger-container" :is-active="appStore.sidebar.opened" class="hamburger-container" @toggleClick="toggleSideBar" /> |
| | | <breadcrumb id="breadcrumb-container" class="breadcrumb-container" v-if="!settingsStore.topNav" /> |
| | | <top-nav id="topmenu-container" class="topmenu-container" v-if="settingsStore.topNav" /> |
| | | <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')" |
| | | v-if="userId === 1 && tenantEnabled" |
| | | :placeholder="proxy.$t('navbar.selectTenant')" |
| | | @change="dynamicTenantEvent" |
| | | @clear="dynamicClearEvent" |
| | | > |
| | |
| | | <svg-icon class-name="search-icon" icon-class="search" /> |
| | | </div> |
| | | </el-tooltip> |
| | | <!-- 消息 --> |
| | | <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"> |
| | | <svg-icon icon-class="message" /> |
| | | </el-badge> |
| | | </template> |
| | | <template #default> |
| | | <notice></notice> |
| | | </template> |
| | | </el-popover> |
| | | </div> |
| | | </el-tooltip> |
| | | <el-tooltip content="Github" effect="dark" placement="bottom"> |
| | | <ruo-yi-git id="ruoyi-git" class="right-menu-item hover-effect" /> |
| | | </el-tooltip> |
| | | |
| | | <el-tooltip :content="$t('navbar.document')" effect="dark" placement="bottom"> |
| | | <el-tooltip :content="proxy.$t('navbar.document')" effect="dark" placement="bottom"> |
| | | <ruo-yi-doc id="ruoyi-doc" class="right-menu-item hover-effect" /> |
| | | </el-tooltip> |
| | | |
| | | <el-tooltip :content="$t('navbar.full')" effect="dark" placement="bottom"> |
| | | <el-tooltip :content="proxy.$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"> |
| | | <el-tooltip :content="proxy.$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"> |
| | | <el-tooltip :content="proxy.$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 @command="handleCommand" class="right-menu-item hover-effect" trigger="click"> |
| | | <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> |
| | | <router-link to="/user/profile" v-if="!dynamic"> |
| | | <el-dropdown-item>{{ $t('navbar.personalCenter') }}</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 command="setLayout"> |
| | | <span>{{ $t('navbar.layoutSetting') }}</span> |
| | | <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>{{ $t('navbar.logout') }}</span> |
| | | <span>{{ proxy.$t('navbar.logout') }}</span> |
| | | </el-dropdown-item> |
| | | </el-dropdown-menu> |
| | | </template> |
| | |
| | | </template> |
| | | |
| | | <script setup lang="ts"> |
| | | import SearchMenu from './topBar/search.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 { getTenantList } from "@/api/login"; |
| | | import { dynamicClear, dynamicTenant } from "@/api/system/tenant"; |
| | | import { ComponentInternalInstance } from "vue"; |
| | | import { TenantVO } from "@/api/types"; |
| | | 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'; |
| | | import router from '@/router'; |
| | | |
| | | const appStore = useAppStore(); |
| | | const userStore = useUserStore(); |
| | | const settingsStore = useSettingsStore(); |
| | | const noticeStore = storeToRefs(useNoticeStore()); |
| | | const newNotice = ref(<number>0); |
| | | |
| | | const { proxy } = getCurrentInstance() as ComponentInternalInstance; |
| | | |
| | |
| | | |
| | | 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('/'); |
| | | await proxy?.$router.push('/'); |
| | | await proxy?.proxy.$tab.closeAllPage(); |
| | | await proxy?.proxy.$tab.refreshPage(); |
| | | } |
| | | } |
| | | }; |
| | | |
| | | const dynamicClearEvent = async () => { |
| | | await dynamicClear(); |
| | | dynamic.value = false; |
| | | proxy?.$tab.closeAllPage(); |
| | | proxy?.$router.push('/'); |
| | | } |
| | | await proxy?.$router.push('/'); |
| | | await proxy?.proxy.$tab.closeAllPage(); |
| | | await proxy?.proxy.$tab.refreshPage(); |
| | | }; |
| | | |
| | | /** 租户列表 */ |
| | | const initTenantList = async () => { |
| | | const { data } = await getTenantList(); |
| | | const { data } = await getTenantList(true); |
| | | tenantEnabled.value = data.tenantEnabled === undefined ? true : data.tenantEnabled; |
| | | if (tenantEnabled.value) { |
| | | tenantList.value = data.voList; |
| | | } |
| | | } |
| | | }; |
| | | |
| | | defineExpose({ |
| | | initTenantList, |
| | | }) |
| | | 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'; |
| | | } |
| | | await ElMessageBox.confirm('确定注销并退出系统吗?', '提示', { |
| | | confirmButtonText: '确定', |
| | | cancelButtonText: '取消', |
| | | type: 'warning' |
| | | }); |
| | | userStore.logout().then(() => { |
| | | router.replace({ |
| | | path: '/login', |
| | | query: { |
| | | redirect: encodeURIComponent(router.currentRoute.value.fullPath || '/') |
| | | } |
| | | }); |
| | | }); |
| | | }; |
| | | |
| | | const emits = defineEmits(['setLayout']) |
| | | const emits = defineEmits(['setLayout']); |
| | | const setLayout = () => { |
| | | emits('setLayout'); |
| | | } |
| | | emits('setLayout'); |
| | | }; |
| | | // 定义Command方法对象 通过key直接调用方法 |
| | | const commandMap: {[key: string]: any} = { |
| | | setLayout, |
| | | logout |
| | | const commandMap: { [key: string]: any } = { |
| | | setLayout, |
| | | logout |
| | | }; |
| | | const handleCommand = (command: string) => { |
| | | // 判断是否存在该方法 |
| | | if (commandMap[command]) { |
| | | commandMap[command](); |
| | | } |
| | | } |
| | | // 判断是否存在该方法 |
| | | 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; |
| | | height: 30px; |
| | | } |
| | | |
| | | :deep(.el-badge__content.is-fixed) { |
| | | top: 12px; |
| | | } |
| | | |
| | | .flex { |