horizontal.vue 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  1. <script setup lang="ts">
  2. import { useI18n } from "vue-i18n";
  3. import { useNav } from "../../hooks/nav";
  4. import Search from "../search/index.vue";
  5. import Notice from "../notice/index.vue";
  6. import { templateRef } from "@vueuse/core";
  7. import SidebarItem from "./sidebarItem.vue";
  8. import avatars from "/@/assets/avatars.jpg";
  9. import screenfull from "../screenfull/index.vue";
  10. import { useRoute, useRouter } from "vue-router";
  11. import { deviceDetection } from "/@/utils/deviceDetection";
  12. import { watch, nextTick, onMounted, getCurrentInstance } from "vue";
  13. import { usePermissionStoreHook } from "/@/store/modules/permission";
  14. import globalization from "/@/assets/svg/globalization.svg?component";
  15. const route = useRoute();
  16. const { locale, t } = useI18n();
  17. const routers = useRouter().options.routes;
  18. const menuRef = templateRef<ElRef | null>("menu", null);
  19. const instance =
  20. getCurrentInstance().appContext.config.globalProperties.$storage;
  21. const title =
  22. getCurrentInstance().appContext.config.globalProperties.$config?.Title;
  23. const {
  24. logout,
  25. backHome,
  26. onPanel,
  27. changeTitle,
  28. handleResize,
  29. menuSelect,
  30. username,
  31. avatarsStyle,
  32. getDropdownItemStyle,
  33. changeWangeditorLanguage
  34. } = useNav();
  35. onMounted(() => {
  36. nextTick(() => {
  37. handleResize(menuRef.value);
  38. });
  39. });
  40. watch(
  41. () => locale.value,
  42. () => {
  43. changeTitle(route.meta);
  44. locale.value === "en"
  45. ? changeWangeditorLanguage(locale.value)
  46. : changeWangeditorLanguage("zh-CN");
  47. }
  48. );
  49. watch(
  50. () => route.path,
  51. () => {
  52. menuSelect(route.path, routers);
  53. }
  54. );
  55. function translationCh() {
  56. instance.locale = { locale: "zh" };
  57. locale.value = "zh";
  58. handleResize(menuRef.value);
  59. }
  60. function translationEn() {
  61. instance.locale = { locale: "en" };
  62. locale.value = "en";
  63. handleResize(menuRef.value);
  64. }
  65. </script>
  66. <template>
  67. <div class="horizontal-header">
  68. <div class="horizontal-header-left" @click="backHome">
  69. <FontIcon icon="team-iconlogo" svg style="width: 35px; height: 35px" />
  70. <h4>{{ title }}</h4>
  71. </div>
  72. <el-menu
  73. ref="menu"
  74. class="horizontal-header-menu"
  75. mode="horizontal"
  76. :default-active="route.path"
  77. router
  78. @select="indexPath => menuSelect(indexPath, routers)"
  79. >
  80. <sidebar-item
  81. v-for="route in usePermissionStoreHook().wholeMenus"
  82. :key="route.path"
  83. :item="route"
  84. :base-path="route.path"
  85. />
  86. </el-menu>
  87. <div class="horizontal-header-right">
  88. <!-- 菜单搜索 -->
  89. <Search />
  90. <!-- 通知 -->
  91. <Notice id="header-notice" />
  92. <!-- 全屏 -->
  93. <screenfull id="header-screenfull" v-show="!deviceDetection()" />
  94. <!-- 国际化 -->
  95. <el-dropdown id="header-translation" trigger="click">
  96. <globalization />
  97. <template #dropdown>
  98. <el-dropdown-menu class="translation">
  99. <el-dropdown-item
  100. :style="getDropdownItemStyle(locale, 'zh')"
  101. @click="translationCh"
  102. >
  103. <span class="check-zh" v-show="locale === 'zh'">
  104. <IconifyIconOffline icon="check" />
  105. </span>
  106. 简体中文
  107. </el-dropdown-item>
  108. <el-dropdown-item
  109. :style="getDropdownItemStyle(locale, 'en')"
  110. @click="translationEn"
  111. >
  112. <span class="check-en" v-show="locale === 'en'">
  113. <IconifyIconOffline icon="check" />
  114. </span>
  115. English
  116. </el-dropdown-item>
  117. </el-dropdown-menu>
  118. </template>
  119. </el-dropdown>
  120. <!-- 退出登录 -->
  121. <el-dropdown trigger="click">
  122. <span class="el-dropdown-link">
  123. <img v-if="avatars" :src="avatars" :style="avatarsStyle" />
  124. <p v-if="username">{{ username }}</p>
  125. </span>
  126. <template #dropdown>
  127. <el-dropdown-menu class="logout">
  128. <el-dropdown-item @click="logout">
  129. <IconifyIconOffline
  130. icon="logout-circle-r-line"
  131. style="margin: 5px"
  132. />
  133. {{ t("buttons.hsLoginOut") }}
  134. </el-dropdown-item>
  135. </el-dropdown-menu>
  136. </template>
  137. </el-dropdown>
  138. <span
  139. class="el-icon-setting"
  140. :title="t('buttons.hssystemSet')"
  141. @click="onPanel"
  142. >
  143. <IconifyIconOffline icon="setting" />
  144. </span>
  145. </div>
  146. </div>
  147. </template>
  148. <style lang="scss" scoped>
  149. .translation {
  150. ::v-deep(.el-dropdown-menu__item) {
  151. padding: 5px 40px;
  152. }
  153. .check-zh {
  154. position: absolute;
  155. left: 20px;
  156. }
  157. .check-en {
  158. position: absolute;
  159. left: 20px;
  160. }
  161. }
  162. .logout {
  163. max-width: 120px;
  164. ::v-deep(.el-dropdown-menu__item) {
  165. min-width: 100%;
  166. display: inline-flex;
  167. flex-wrap: wrap;
  168. }
  169. }
  170. </style>