123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- <!-- 分栏布局 -->
- <template>
- <el-container class="layout-wrap--columns">
- <div class="aside-split">
- <div class="logo">
- <!-- <img class="logo-img" src="@/assets/images/logo.svg" alt="logo" />-->
- <!-- <SvgIcon class="logo-img sidebar-logo" icon-class="logo" />-->
- <img class="logo-img" src="@/assets/icons/logo.svg" alt="logo" />
- </div>
- <el-scrollbar>
- <div class="split-list">
- <div
- v-for="item in menuList"
- :key="item.path"
- class="split-item"
- :class="{ 'split-active': splitActive === item.path || `/${splitActive.split('/')[1]}` === item.path }"
- @click="changeSubMenu(item)"
- >
- <MenuIcon v-if="item.meta?.icon" :icon-class="item.meta.icon"></MenuIcon>
- <!-- <el-icon>
- <component :is="item.meta.icon"></component>
- </el-icon>-->
- <span class="title">{{ generateTitle(item.meta.title) }}</span>
- </div>
- </div>
- </el-scrollbar>
- </div>
- <el-aside :class="{ 'not-aside': !subMenuList.length }" :style="{ width: isCollapse ? '65px' : '210px' }">
- <div class="logo">
- <span v-show="subMenuList.length" class="text-overflow_ellipsis logo-text" :title="title">{{ title }}</span>
- </div>
- <el-scrollbar>
- <el-menu class="layout-menu-wrap" :router="false" :default-active="activeMenu" :collapse="isCollapse" :unique-opened="accordion" :collapse-transition="false">
- <SubMenu :menu-list="subMenuList" />
- </el-menu>
- </el-scrollbar>
- </el-aside>
- <el-container>
- <el-header>
- <ToolBarLeft />
- <ToolBarRight />
- </el-header>
- <AppMain />
- </el-container>
- </el-container>
- </template>
- <script setup lang="ts" name="layoutColumns">
- import { ref, computed, watch } from 'vue'
- import { useRoute, useRouter } from 'vue-router'
- // import { useAuthStore } from '@/stores/modules/auth'
- // import { useGlobalStore } from '@/stores/modules/global'
- // import Main from '@/layouts/components/Main/index.vue'
- import AppMain from '@/layout/components/AppMain.vue'
- import ToolBarLeft from '@/layout/components/Header/ToolBarLeft.vue'
- import ToolBarRight from '@/layout/components/Header/ToolBarRight.vue'
- import SubMenu from '@/layout/components/Menu/SubMenu.vue'
- import MenuIcon from '@/layout/components/Menu/MenuIcon.vue'
- import useStore from '@/store'
- import { generateTitle } from '@/utils/i18n'
- const title = import.meta.env.VITE_APP_TITLE
- const route = useRoute()
- const router = useRouter()
- const { permission, setting, app } = useStore()
- // const authStore = useAuthStore()
- // const globalStore = useGlobalStore()
- // const accordion = computed(() => globalStore.accordion)
- // const isCollapse = computed(() => globalStore.isCollapse)
- // const menuList = computed(() => authStore.showMenuListGet)
- const accordion = computed(() => setting.accordion || false) // todo...
- const isCollapse = computed(() => setting.isCollapse)
- const menuList = computed(() => permission.showMenuList)
- const activeMenu = computed(() => (route.meta.activeMenu ? route.meta.activeMenu : route.path) as string)
- const subMenuList = ref<Menu.MenuOptions[]>([])
- const splitActive = ref('')
- watch(
- () => [menuList, route],
- () => {
- // 当前菜单没有数据直接 return
- if (!menuList.value.length) return
- splitActive.value = route.path
- const menuItem = menuList.value.filter((item: Menu.MenuOptions) => {
- return route.path === item.path || `/${route.path.split('/')[1]}` === item.path
- // const pathArr = route.path.split('/')
- // const childPath = pathArr.length > 1 ? `/${pathArr[1]}` : pathArr[0]
- // return route.path === item.path || childPath === item.path
- })
- if (menuItem[0]?.children?.length) return (subMenuList.value = menuItem[0].children)
- subMenuList.value = []
- },
- {
- deep: true,
- immediate: true
- }
- )
- // change SubMenu
- const changeSubMenu = (item: Menu.MenuOptions) => {
- splitActive.value = item.path
- if (item.children?.length) return (subMenuList.value = item.children)
- subMenuList.value = []
- router.push(item.path)
- }
- </script>
- <style lang="scss">
- @import './index.scss';
- </style>
|