1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- <script setup lang="ts">
- import Logo from "./logo.vue";
- import { emitter } from "/@/utils/mitt";
- import SidebarItem from "./sidebarItem.vue";
- import { algorithm } from "/@/utils/algorithm";
- import { storageLocal } from "/@/utils/storage";
- import { useRoute, useRouter } from "vue-router";
- import { computed, ref, onBeforeMount } from "vue";
- import { useAppStoreHook } from "/@/store/modules/app";
- import { usePermissionStoreHook } from "/@/store/modules/permission";
- const route = useRoute();
- const pureApp = useAppStoreHook();
- const router = useRouter().options.routes;
- const showLogo = ref(storageLocal.getItem("logoVal") || "1");
- const isCollapse = computed(() => {
- return !pureApp.getSidebarStatus;
- });
- const activeMenu = computed((): string => {
- const { meta, path } = route;
- if (meta.activeMenu) {
- // @ts-ignore
- return meta.activeMenu;
- }
- return path;
- });
- const menuSelect = (indexPath: string): void => {
- let parentPath = "";
- let parentPathIndex = indexPath.lastIndexOf("/");
- if (parentPathIndex > 0) {
- parentPath = indexPath.slice(0, parentPathIndex);
- }
- // 找到当前路由的信息
- // eslint-disable-next-line no-inner-declarations
- function findCurrentRoute(routes) {
- return routes.map(item => {
- if (item.path === indexPath) {
- // 切换左侧菜单 通知标签页
- emitter.emit("changLayoutRoute", {
- indexPath,
- parentPath
- });
- } else {
- if (item.children) findCurrentRoute(item.children);
- }
- });
- }
- findCurrentRoute(algorithm.increaseIndexes(router));
- };
- onBeforeMount(() => {
- emitter.on("logoChange", key => {
- showLogo.value = key;
- });
- });
- </script>
- <template>
- <div :class="['sidebar-container', showLogo ? 'has-logo' : '']">
- <Logo v-if="showLogo === '1'" :collapse="isCollapse" />
- <el-scrollbar wrap-class="scrollbar-wrapper">
- <el-menu
- :default-active="activeMenu"
- :collapse="isCollapse"
- unique-opened
- router
- :collapse-transition="false"
- mode="vertical"
- class="outer-most"
- @select="menuSelect"
- >
- <sidebar-item
- v-for="route in usePermissionStoreHook().wholeMenus"
- :key="route.path"
- :item="route"
- class="outer-most"
- :base-path="route.path"
- />
- </el-menu>
- </el-scrollbar>
- </div>
- </template>
|