123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151 |
- <template>
- <div class="el-menu-horizontal-warp">
- <el-scrollbar @wheel.native.prevent="onElMenuHorizontalScroll" ref="elMenuHorizontalScrollRef">
- <el-menu router :default-active="defaultActive" background-color="transparent" mode="horizontal">
- <template v-for="val in menuLists">
- <el-sub-menu :index="val.path" v-if="val.children && val.children.length > 0" :key="val.path">
- <template #title>
- <SvgIcon :name="val.meta?.icon" />
- <span>{{ val.meta?.title.indexOf('.')>0?$t(val.meta?.title):val.meta?.title }}</span>
- </template>
- <SubItem :chil="val.children" />
- </el-sub-menu>
- <template v-else>
- <el-menu-item :index="val.path" :key="val.path">
- <template #title v-if="!val.meta?.isLink || (val.meta?.isLink && val.meta.isIframe)">
- <SvgIcon :name="val.meta?.icon" />
- {{ val.meta?.title.indexOf('.')>0?$t(val.meta?.title):val.meta?.title }}
- </template>
- <template #title v-else>
- <a :href="val.meta?.isLink" target="_blank" rel="opener" class="w100">
- <SvgIcon :name="val.meta?.icon" />
- {{ val.meta?.title.indexOf('.')>0?$t(val.meta?.title):val.meta?.title }}
- </a>
- </template>
- </el-menu-item>
- </template>
- </template>
- </el-menu>
- </el-scrollbar>
- </div>
- </template>
- <script lang="ts">
- import { toRefs, reactive, computed, defineComponent, getCurrentInstance, onMounted, nextTick, onBeforeMount } from 'vue';
- import { useRoute, onBeforeRouteUpdate } from 'vue-router';
- import { useStore } from '/@/store/index';
- import SubItem from '/@/layout/navMenu/subItem.vue';
- export default defineComponent({
- name: 'navMenuHorizontal',
- components: { SubItem },
- props: {
- menuList: {
- type: Array,
- default: () => [],
- },
- },
- setup(props) {
- const { proxy } = <any>getCurrentInstance();
- const route = useRoute();
- const store = useStore();
- const state = reactive({
- defaultActive: null,
- });
- // 获取父级菜单数据
- const menuLists = computed(() => {
- return <any>props.menuList;
- });
- // 设置横向滚动条可以鼠标滚轮滚动
- const onElMenuHorizontalScroll = (e: any) => {
- const eventDelta = e.wheelDelta || -e.deltaY * 40;
- proxy.$refs.elMenuHorizontalScrollRef.$refs.wrap$.scrollLeft = proxy.$refs.elMenuHorizontalScrollRef.$refs.wrap$.scrollLeft + eventDelta / 4;
- };
- // 初始化数据,页面刷新时,滚动条滚动到对应位置
- const initElMenuOffsetLeft = () => {
- nextTick(() => {
- let els: any = document.querySelector('.el-menu.el-menu--horizontal li.is-active');
- if (!els) return false;
- proxy.$refs.elMenuHorizontalScrollRef.$refs.wrap$.scrollLeft = els.offsetLeft;
- });
- };
- // 路由过滤递归函数
- const filterRoutesFun = (arr: Array<object>) => {
- return arr
- .filter((item: any) => !item.meta.isHide)
- .map((item: any) => {
- item = Object.assign({}, item);
- if (item.children) item.children = filterRoutesFun(item.children);
- return item;
- });
- };
- // 传送当前子级数据到菜单中
- const setSendClassicChildren = (path: string) => {
- const currentPathSplit = path.split('/');
- let currentData: any = {};
- filterRoutesFun(store.state.routesList.routesList).map((v, k) => {
- if (v.path === `/${currentPathSplit[1]}`) {
- v['k'] = k;
- currentData['item'] = [{ ...v }];
- currentData['children'] = [{ ...v }];
- if (v.children) currentData['children'] = v.children;
- }
- });
- return currentData;
- };
- // 设置页面当前路由高亮
- const setCurrentRouterHighlight = (currentRoute: any) => {
- const { path, meta } = currentRoute;
- if (store.state.themeConfig.themeConfig.layout === 'classic') {
- (<any>state.defaultActive) = `/${path.split('/')[1]}`;
- } else {
- const pathSplit = meta.isDynamic ? meta.isDynamicPath.split('/') : path.split('/');
- if (pathSplit.length >= 4 && meta.isHide) state.defaultActive = pathSplit.splice(0, 3).join('/');
- else state.defaultActive = path;
- }
- };
- // 页面加载前
- onBeforeMount(() => {
- setCurrentRouterHighlight(route);
- });
- // 页面加载时
- onMounted(() => {
- initElMenuOffsetLeft();
- });
- // 路由更新时
- onBeforeRouteUpdate((to) => {
- // 修复:https://gitee.com/lyt-top/vue-next-admin/issues/I3YX6G
- setCurrentRouterHighlight(to);
- // 修复经典布局开启切割菜单时,点击tagsView后左侧导航菜单数据不变的问题
- let { layout, isClassicSplitMenu } = store.state.themeConfig.themeConfig;
- if (layout === 'classic' && isClassicSplitMenu) {
- proxy.mittBus.emit('setSendClassicChildren', setSendClassicChildren(to.path));
- }
- });
- return {
- menuLists,
- onElMenuHorizontalScroll,
- ...toRefs(state),
- };
- },
- });
- </script>
- <style scoped lang="scss">
- .el-menu-horizontal-warp {
- flex: 1;
- overflow: hidden;
- margin-right: 30px;
- :deep(.el-scrollbar__bar.is-vertical) {
- display: none;
- }
- :deep(a) {
- width: 100%;
- }
- .el-menu.el-menu--horizontal {
- display: flex;
- height: 100%;
- width: 100%;
- box-sizing: border-box;
- }
- }
- </style>
|