123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275 |
- <script setup lang="ts">
- import { computed } from "vue";
- import { useI18n } from "vue-i18n";
- import { emitter } from "/@/utils/mitt";
- import Notice from "./notice/index.vue";
- import avatars from "/@/assets/avatars.jpg";
- import { transformI18n } from "/@/plugins/i18n";
- import Hamburger from "./sidebar/hamBurger.vue";
- import { useRouter, useRoute } from "vue-router";
- import { storageSession } from "/@/utils/storage";
- import Breadcrumb from "./sidebar/breadCrumb.vue";
- import { useAppStoreHook } from "/@/store/modules/app";
- import { unref, watch, getCurrentInstance } from "vue";
- import { deviceDetection } from "/@/utils/deviceDetection";
- import screenfull from "../components/screenfull/index.vue";
- import globalization from "/@/assets/svg/globalization.svg";
- const instance =
- getCurrentInstance().appContext.config.globalProperties.$storage;
- const pureApp = useAppStoreHook();
- const router = useRouter();
- const route = useRoute();
- let usename = storageSession.getItem("info")?.username;
- const { locale } = useI18n();
- const getDropdownItemStyle = computed(() => {
- return t => {
- return {
- background: locale.value === t ? "#1b2a47" : "",
- color: locale.value === t ? "#f4f4f5" : "#000"
- };
- };
- });
- watch(
- () => locale.value,
- () => {
- //@ts-ignore
- document.title = transformI18n(
- //@ts-ignore
- unref(route.meta.title),
- unref(route.meta.i18n)
- ); // 动态title
- }
- );
- // 退出登录
- const logout = (): void => {
- storageSession.removeItem("info");
- router.push("/login");
- };
- function onPanel() {
- emitter.emit("openPanel");
- }
- function toggleSideBar() {
- pureApp.toggleSideBar();
- }
- // 简体中文
- function translationCh() {
- instance.locale = { locale: "zh" };
- locale.value = "zh";
- }
- // English
- function translationEn() {
- instance.locale = { locale: "en" };
- locale.value = "en";
- }
- </script>
- <template>
- <div class="navbar">
- <Hamburger
- :is-active="pureApp.sidebar.opened"
- class="hamburger-container"
- @toggleClick="toggleSideBar"
- />
- <Breadcrumb class="breadcrumb-container" />
- <div class="vertical-header-right">
- <!-- 通知 -->
- <Notice id="header-notice" />
- <!-- 全屏 -->
- <screenfull id="header-screenfull" v-show="!deviceDetection()" />
- <!-- 国际化 -->
- <el-dropdown id="header-translation" trigger="click">
- <globalization />
- <template #dropdown>
- <el-dropdown-menu class="translation">
- <el-dropdown-item
- :style="getDropdownItemStyle('zh')"
- @click="translationCh"
- ><el-icon class="check-zh" v-show="locale === 'zh'"
- ><check /></el-icon
- >简体中文</el-dropdown-item
- >
- <el-dropdown-item
- :style="getDropdownItemStyle('en')"
- @click="translationEn"
- ><el-icon class="check-en" v-show="locale === 'en'"
- ><check /></el-icon
- >English</el-dropdown-item
- >
- </el-dropdown-menu>
- </template>
- </el-dropdown>
- <!-- 退出登陆 -->
- <el-dropdown trigger="click">
- <span class="el-dropdown-link">
- <img :src="avatars" />
- <p>{{ usename }}</p>
- </span>
- <template #dropdown>
- <el-dropdown-menu class="logout">
- <el-dropdown-item @click="logout">
- <i class="ri-logout-circle-r-line"></i
- >{{ $t("buttons.hsLoginOut") }}</el-dropdown-item
- >
- </el-dropdown-menu>
- </template>
- </el-dropdown>
- <el-icon
- class="el-icon-setting"
- :title="$t('buttons.hssystemSet')"
- @click="onPanel"
- >
- <Setting />
- </el-icon>
- </div>
- </div>
- </template>
- <style lang="scss" scoped>
- .navbar {
- width: 100%;
- height: 48px;
- overflow: hidden;
- background: #fff;
- box-shadow: 0 1px 4px rgba(0, 21, 41, 0.08);
- .hamburger-container {
- line-height: 48px;
- height: 100%;
- float: left;
- cursor: pointer;
- transition: background 0.3s;
- -webkit-tap-highlight-color: transparent;
- &:hover {
- background: rgba(0, 0, 0, 0.025);
- }
- }
- .vertical-header-right {
- display: flex;
- min-width: 280px;
- height: 48px;
- align-items: center;
- color: #000000d9;
- justify-content: flex-end;
- :deep(.dropdown-badge) {
- &:hover {
- background: #f6f6f6;
- }
- }
- .screen-full {
- cursor: pointer;
- &:hover {
- background: #f6f6f6;
- }
- }
- .globalization {
- height: 48px;
- width: 40px;
- padding: 11px;
- cursor: pointer;
- &:hover {
- background: #f6f6f6;
- }
- }
- .el-dropdown-link {
- width: 100px;
- height: 48px;
- padding: 10px;
- display: flex;
- align-items: center;
- justify-content: space-around;
- cursor: pointer;
- color: #000000d9;
- &:hover {
- background: #f6f6f6;
- }
- p {
- font-size: 14px;
- }
- img {
- width: 22px;
- height: 22px;
- border-radius: 50%;
- }
- }
- .el-icon-setting {
- height: 48px;
- width: 38px;
- padding: 12px;
- display: flex;
- cursor: pointer;
- align-items: center;
- &:hover {
- background: #f6f6f6;
- }
- }
- }
- .breadcrumb-container {
- float: left;
- }
- }
- .translation {
- .el-dropdown-menu__item {
- padding: 0 40px !important;
- }
- .el-dropdown-menu__item:focus,
- .el-dropdown-menu__item:not(.is-disabled):hover {
- color: #606266;
- background: #f0f0f0;
- }
- .check-zh {
- position: absolute;
- left: 20px;
- top: 13px;
- }
- .check-en {
- position: absolute;
- bottom: 13px;
- left: 20px;
- }
- }
- .logout {
- max-width: 120px;
- .el-dropdown-menu__item {
- min-width: 100%;
- display: inline-flex;
- flex-wrap: wrap;
- padding: 0 18px !important;
- }
- .el-dropdown-menu__item:focus,
- .el-dropdown-menu__item:not(.is-disabled):hover {
- color: #606266;
- background: #f0f0f0;
- }
- }
- </style>
|