Navbar.vue 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262
  1. <template>
  2. <div class="navbar">
  3. <Hamburger
  4. :is-active="pureApp.sidebar.opened"
  5. class="hamburger-container"
  6. @toggleClick="toggleSideBar"
  7. />
  8. <Breadcrumb class="breadcrumb-container" />
  9. <div class="right-menu">
  10. <!-- 全屏 -->
  11. <screenfull v-show="!deviceDetection()" />
  12. <!-- 国际化 -->
  13. <div
  14. v-show="!deviceDetection()"
  15. class="inter"
  16. :title="currentLocale ? '中文' : 'English'"
  17. @click="toggleLang"
  18. >
  19. <img :src="currentLocale ? ch : en" />
  20. </div>
  21. <i
  22. class="el-icon-setting hsset"
  23. :title="$t('message.hssystemSet')"
  24. @click="onPanel"
  25. ></i>
  26. <!-- 退出登陆 -->
  27. <el-dropdown trigger="click">
  28. <span class="el-dropdown-link">
  29. <img :src="favicon" />
  30. <p>{{ usename }}</p>
  31. </span>
  32. <template #dropdown>
  33. <el-dropdown-menu>
  34. <el-dropdown-item icon="el-icon-switch-button" @click="logout">
  35. {{ $t("message.hsLoginOut") }}
  36. </el-dropdown-item>
  37. </el-dropdown-menu>
  38. </template>
  39. </el-dropdown>
  40. </div>
  41. </div>
  42. </template>
  43. <script lang="ts">
  44. import {
  45. defineComponent,
  46. onMounted,
  47. unref,
  48. watch,
  49. getCurrentInstance
  50. } from "vue";
  51. import Breadcrumb from "/@/components/ReBreadCrumb";
  52. import Hamburger from "/@/components/ReHamBurger";
  53. import screenfull from "../components/screenfull/index.vue";
  54. import { useRouter, useRoute } from "vue-router";
  55. import { useAppStoreHook } from "/@/store/modules/app";
  56. import { storageSession } from "/@/utils/storage";
  57. import ch from "/@/assets/ch.png";
  58. import en from "/@/assets/en.png";
  59. import favicon from "/favicon.ico";
  60. import { emitter } from "/@/utils/mitt";
  61. import { deviceDetection } from "/@/utils/deviceDetection";
  62. import { useI18n } from "vue-i18n";
  63. export default defineComponent({
  64. name: "Navbar",
  65. components: {
  66. Breadcrumb,
  67. Hamburger,
  68. screenfull
  69. },
  70. // @ts-ignore
  71. computed: {
  72. // eslint-disable-next-line vue/return-in-computed-property
  73. currentLocale() {
  74. if (!this.$storage.locale) {
  75. // eslint-disable-next-line
  76. this.$storage.locale = { locale: "zh" };
  77. useI18n().locale.value = "zh";
  78. }
  79. switch (this.$storage.locale?.locale) {
  80. case "zh":
  81. return true;
  82. case "en":
  83. return false;
  84. }
  85. }
  86. },
  87. setup() {
  88. const instance =
  89. getCurrentInstance().appContext.config.globalProperties.$storage;
  90. const pureApp = useAppStoreHook();
  91. const router = useRouter();
  92. const route = useRoute();
  93. let usename = storageSession.getItem("info")?.username;
  94. const { locale, t } = useI18n();
  95. // 国际化语言切换
  96. const toggleLang = (): void => {
  97. switch (instance.locale.locale) {
  98. case "zh":
  99. instance.locale = { locale: "en" };
  100. locale.value = "en";
  101. break;
  102. case "en":
  103. instance.locale = { locale: "zh" };
  104. locale.value = "zh";
  105. break;
  106. }
  107. };
  108. watch(
  109. () => locale.value,
  110. () => {
  111. //@ts-ignore
  112. document.title = t(unref(route.meta.title)); // 动态title
  113. }
  114. );
  115. // 退出登录
  116. const logout = (): void => {
  117. storageSession.removeItem("info");
  118. router.push("/login");
  119. };
  120. function onPanel() {
  121. emitter.emit("openPanel");
  122. }
  123. function toggleSideBar() {
  124. pureApp.toggleSideBar();
  125. }
  126. onMounted(() => {
  127. document
  128. .querySelector(".el-dropdown__popper")
  129. ?.setAttribute("class", "resetTop");
  130. document
  131. .querySelector(".el-popper__arrow")
  132. ?.setAttribute("class", "hidden");
  133. });
  134. return {
  135. pureApp,
  136. toggleSideBar,
  137. usename,
  138. toggleLang,
  139. logout,
  140. ch,
  141. en,
  142. favicon,
  143. onPanel,
  144. deviceDetection,
  145. locale,
  146. t
  147. };
  148. }
  149. });
  150. </script>
  151. <style lang="scss" scoped>
  152. .navbar {
  153. width: 100%;
  154. height: 50px;
  155. overflow: hidden;
  156. background: #fff;
  157. box-shadow: 0 1px 4px rgba(0, 21, 41, 0.08);
  158. .hamburger-container {
  159. line-height: 46px;
  160. height: 100%;
  161. float: left;
  162. cursor: pointer;
  163. transition: background 0.3s;
  164. -webkit-tap-highlight-color: transparent;
  165. &:hover {
  166. background: rgba(0, 0, 0, 0.025);
  167. }
  168. }
  169. .breadcrumb-container {
  170. float: left;
  171. }
  172. .right-menu {
  173. position: absolute;
  174. right: 0;
  175. display: flex;
  176. align-items: center;
  177. height: 48px;
  178. line-height: 48px;
  179. .inter {
  180. width: 40px;
  181. height: 48px;
  182. display: flex;
  183. align-items: center;
  184. justify-content: space-around;
  185. &:hover {
  186. cursor: pointer;
  187. background: #f0f0f0;
  188. }
  189. img {
  190. width: 25px;
  191. }
  192. }
  193. .hsset {
  194. width: 40px;
  195. height: 48px;
  196. display: flex;
  197. align-items: center;
  198. justify-content: space-around;
  199. margin-right: 5px;
  200. &:hover {
  201. cursor: pointer;
  202. background: #f0f0f0;
  203. }
  204. }
  205. .el-dropdown-link {
  206. width: 70px;
  207. display: flex;
  208. align-items: center;
  209. justify-content: space-around;
  210. margin-right: 10px;
  211. cursor: pointer;
  212. p {
  213. font-size: 14px;
  214. }
  215. img {
  216. width: 22px;
  217. height: 22px;
  218. }
  219. }
  220. }
  221. }
  222. // single element-plus reset
  223. .el-dropdown-menu__item {
  224. padding: 0 10px;
  225. }
  226. .el-dropdown-menu {
  227. padding: 6px 0;
  228. }
  229. .el-dropdown-menu__item:focus,
  230. .el-dropdown-menu__item:not(.is-disabled):hover {
  231. color: #606266;
  232. background: #f0f0f0;
  233. }
  234. </style>