mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-05 11:18:54 +08:00
79 lines
2.1 KiB
Vue
79 lines
2.1 KiB
Vue
<template>
|
|
<f-menu
|
|
:modelValue="route.path"
|
|
:inverted="inverted"
|
|
:mode="mode"
|
|
:options="fixedMenus"
|
|
@select="onMenuClick"
|
|
></f-menu>
|
|
</template>
|
|
|
|
<script>
|
|
import { computed, h } from 'vue';
|
|
import { FMenu } from '@fesjs/fes-design';
|
|
import { useRoute, useRouter } from '@@/core/coreExports';
|
|
import MenuIcon from './MenuIcon';
|
|
import { transform as transformByAccess } from '../helpers/pluginAccess';
|
|
import { transform as transformByLocale } from '../helpers/pluginLocale';
|
|
|
|
export default {
|
|
components: {
|
|
FMenu
|
|
},
|
|
props: {
|
|
menus: {
|
|
type: Array,
|
|
default() {
|
|
return [];
|
|
}
|
|
},
|
|
mode: {
|
|
type: String,
|
|
default: 'vertical'
|
|
},
|
|
inverted: {
|
|
type: Boolean,
|
|
default: false
|
|
}
|
|
},
|
|
setup(props) {
|
|
const route = useRoute();
|
|
const router = useRouter();
|
|
const transform = menus => menus.map((menu) => {
|
|
const copy = {
|
|
...menu,
|
|
label: menu.title,
|
|
value: menu.path
|
|
};
|
|
if (menu.icon) {
|
|
copy.icon = () => h(MenuIcon, {
|
|
icon: menu.icon
|
|
});
|
|
}
|
|
if (menu.children) {
|
|
copy.children = transform(menu.children);
|
|
}
|
|
return copy;
|
|
});
|
|
const fixedMenus = computed(() => transformByLocale(transformByAccess(transform(props.menus))));
|
|
const onMenuClick = (e) => {
|
|
const path = e.value;
|
|
if (/^https?:\/\//.test(path)) {
|
|
window.open(path, '_blank');
|
|
} else if (/^\//.test(path)) {
|
|
router.push(path);
|
|
} else {
|
|
console.warn(
|
|
'[plugin-layout]: 菜单的path只能使以http(s)开头的网址或者路由地址'
|
|
);
|
|
}
|
|
};
|
|
return {
|
|
route,
|
|
fixedMenus,
|
|
onMenuClick
|
|
};
|
|
}
|
|
};
|
|
</script>
|