mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-05 11:18:54 +08:00
feat: menu 支持配置 _blank 在新页面打开
This commit is contained in:
parent
8530183c21
commit
96058a3359
@ -300,6 +300,7 @@ export const layout = {
|
|||||||
```
|
```
|
||||||
|
|
||||||
- **children**:子菜单配置。
|
- **children**:子菜单配置。
|
||||||
|
- **_blank**:是否在新的窗口打开页面,默认 http 开头的链接在新窗口打开
|
||||||
|
|
||||||
:::tip
|
:::tip
|
||||||
函数类型仅在运行时可用,可以实现动态变更菜单。
|
函数类型仅在运行时可用,可以实现动态变更菜单。
|
||||||
|
@ -126,8 +126,15 @@ export default {
|
|||||||
const onMenuClick = (e) => {
|
const onMenuClick = (e) => {
|
||||||
const path = e.value;
|
const path = e.value;
|
||||||
const currentMenu = menuArray.value.find(item => item.value === path);
|
const currentMenu = menuArray.value.find(item => item.value === path);
|
||||||
|
if (currentMenu._blank) {
|
||||||
if (/^https?:\/\//.test(path)) {
|
const resolved = router.resolve({
|
||||||
|
path,
|
||||||
|
query: currentMenu?.query || {},
|
||||||
|
params: currentMenu?.params || {},
|
||||||
|
});
|
||||||
|
window.open(resolved.href, '_blank');
|
||||||
|
}
|
||||||
|
else if (/^https?:\/\//.test(path)) {
|
||||||
window.open(path, '_blank');
|
window.open(path, '_blank');
|
||||||
}
|
}
|
||||||
else if (/^\//.test(path)) {
|
else if (/^\//.test(path)) {
|
||||||
|
@ -134,6 +134,9 @@ export default {
|
|||||||
const handleCloseTab = async (targetKey) => {
|
const handleCloseTab = async (targetKey) => {
|
||||||
targetKey = targetKey || route.path;
|
targetKey = targetKey || route.path;
|
||||||
const selectedPage = findPage(targetKey);
|
const selectedPage = findPage(targetKey);
|
||||||
|
if (!selectedPage) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
const list = [...pageList.value];
|
const list = [...pageList.value];
|
||||||
const index = list.indexOf(selectedPage);
|
const index = list.indexOf(selectedPage);
|
||||||
if (route.path === selectedPage.path) {
|
if (route.path === selectedPage.path) {
|
||||||
|
@ -47,6 +47,7 @@ export default defineBuildConfig({
|
|||||||
{
|
{
|
||||||
name: 'editor',
|
name: 'editor',
|
||||||
icon: '/wine-outline.svg',
|
icon: '/wine-outline.svg',
|
||||||
|
_blank: true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '$externalLink',
|
title: '$externalLink',
|
||||||
@ -70,6 +71,7 @@ export default defineBuildConfig({
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'pinia',
|
name: 'pinia',
|
||||||
|
_blank: true,
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
menuProps: {
|
menuProps: {
|
||||||
|
@ -1,7 +1,10 @@
|
|||||||
<template>
|
<template>
|
||||||
<div>{{ store.counter }}</div>
|
<div>{{ store.counter }}</div>
|
||||||
<FButton class="m-2" @click="store.increment">Button</FButton>
|
<FButton class="m-2" @click="store.increment">
|
||||||
|
Button
|
||||||
|
</FButton>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<config>
|
<config>
|
||||||
{
|
{
|
||||||
"name": "pinia",
|
"name": "pinia",
|
||||||
@ -11,6 +14,7 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
</config>
|
</config>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { FButton } from '@fesjs/fes-design';
|
import { FButton } from '@fesjs/fes-design';
|
||||||
import { useStore } from '@/store/main';
|
import { useStore } from '@/store/main';
|
||||||
|
Loading…
x
Reference in New Issue
Block a user