2024-08-22 11:27:06 +08:00
|
|
|
|
<!-- 横向布局 -->
|
|
|
|
|
|
<template>
|
2025-10-10 13:23:40 +08:00
|
|
|
|
<el-container class="layout">
|
|
|
|
|
|
<el-header>
|
|
|
|
|
|
<div class="logo flx-center">
|
|
|
|
|
|
<!-- <img class="logo-img" src="@/assets/images/logo.svg" alt="logo" /> -->
|
2026-07-02 15:33:16 +08:00
|
|
|
|
<img class="logo-img" src="@/assets/images/logo.png" alt="logo" />
|
2025-10-10 13:23:40 +08:00
|
|
|
|
<span class="logo-text">{{ title }}</span>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<el-menu v-if="showMenuFlag" trigger="click" mode="horizontal" :router="false" :default-active="activeMenu">
|
|
|
|
|
|
<!-- 不能直接使用 SubMenu 组件,无法触发 el-menu 隐藏省略功能 -->
|
|
|
|
|
|
<template v-for="subItem in menuList" :key="subItem.path">
|
|
|
|
|
|
<el-sub-menu
|
|
|
|
|
|
v-if="subItem.children?.length"
|
|
|
|
|
|
:key="subItem.path"
|
|
|
|
|
|
:index="subItem.path + 'el-sub-menu'"
|
|
|
|
|
|
>
|
|
|
|
|
|
<template #title>
|
|
|
|
|
|
<el-icon>
|
|
|
|
|
|
<component :is="subItem.meta.icon"></component>
|
|
|
|
|
|
</el-icon>
|
|
|
|
|
|
<span>{{ subItem.meta.title }}</span>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
<SubMenu :menu-list="subItem.children" />
|
|
|
|
|
|
</el-sub-menu>
|
|
|
|
|
|
<el-menu-item
|
|
|
|
|
|
v-else
|
|
|
|
|
|
:key="subItem.path + 'el-menu-item'"
|
|
|
|
|
|
:index="subItem.path"
|
|
|
|
|
|
@click="handleClickMenu(subItem)"
|
|
|
|
|
|
>
|
|
|
|
|
|
<el-icon>
|
|
|
|
|
|
<component :is="subItem.meta.icon"></component>
|
|
|
|
|
|
</el-icon>
|
|
|
|
|
|
<template #title>
|
|
|
|
|
|
<span>{{ subItem.meta.title }}</span>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
</el-menu-item>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
</el-menu>
|
|
|
|
|
|
<ToolBarRight />
|
|
|
|
|
|
</el-header>
|
|
|
|
|
|
<Main />
|
|
|
|
|
|
</el-container>
|
2024-08-22 11:27:06 +08:00
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
<script setup lang="ts" name="layoutTransverse">
|
2025-10-10 13:23:40 +08:00
|
|
|
|
import { computed } from 'vue'
|
|
|
|
|
|
import { useAuthStore } from '@/stores/modules/auth'
|
|
|
|
|
|
import { useRoute, useRouter } from 'vue-router'
|
|
|
|
|
|
import Main from '@/layouts/components/Main/index.vue'
|
|
|
|
|
|
import ToolBarRight from '@/layouts/components/Header/ToolBarRight.vue'
|
|
|
|
|
|
import SubMenu from '@/layouts/components/Menu/SubMenu.vue'
|
2024-08-22 11:27:06 +08:00
|
|
|
|
|
2025-10-10 13:23:40 +08:00
|
|
|
|
const title = import.meta.env.VITE_GLOB_APP_TITLE
|
2024-08-22 11:27:06 +08:00
|
|
|
|
|
2025-10-10 13:23:40 +08:00
|
|
|
|
const route = useRoute()
|
|
|
|
|
|
const router = useRouter()
|
|
|
|
|
|
const authStore = useAuthStore()
|
|
|
|
|
|
const menuList = computed(() => authStore.showMenuListGet)
|
|
|
|
|
|
const showMenuFlag = computed(() => authStore.showMenuFlagGet)
|
|
|
|
|
|
const activeMenu = computed(() => (route.meta.activeMenu ? route.meta.activeMenu : route.path) as string)
|
2024-08-22 11:27:06 +08:00
|
|
|
|
|
2025-10-27 16:27:12 +08:00
|
|
|
|
const handleClickMenu = async (subItem: Menu.MenuOptions) => {
|
|
|
|
|
|
if (subItem.meta?.isLink) {
|
|
|
|
|
|
window.open(subItem.meta.isLink, '_blank')
|
|
|
|
|
|
return
|
|
|
|
|
|
}
|
|
|
|
|
|
await router.push(subItem.path)
|
2025-10-10 13:23:40 +08:00
|
|
|
|
}
|
2024-08-22 11:27:06 +08:00
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
<style scoped lang="scss">
|
2025-10-10 13:23:40 +08:00
|
|
|
|
@use './index.scss';
|
|
|
|
|
|
.logo {
|
|
|
|
|
|
margin-right: 0 !important;
|
2024-08-22 16:36:00 +08:00
|
|
|
|
}
|
|
|
|
|
|
.logo-text {
|
2025-10-10 13:23:40 +08:00
|
|
|
|
letter-spacing: 2px;
|
2024-08-22 16:36:00 +08:00
|
|
|
|
}
|
2024-08-22 11:27:06 +08:00
|
|
|
|
</style>
|