fix(plugin-layout): 多页签标题正确显示

This commit is contained in:
harrywan 2021-11-23 16:30:26 +08:00
parent 71f54368a2
commit fb6b7c339b
5 changed files with 41 additions and 28 deletions

View File

@ -63,6 +63,8 @@ Fes.js 是一个优秀的前端应用解决方案。Fes.js 以 Vue 3.0 和路由
| [@fesjs/plugin-qiankun](https://winixt.gitee.io/fesjs/zh/reference/plugin/plugins/qiankun.html#%E4%BB%8B%E7%BB%8D) | 基于 `qiankun`,提供微服务能力 | | [@fesjs/plugin-qiankun](https://winixt.gitee.io/fesjs/zh/reference/plugin/plugins/qiankun.html#%E4%BB%8B%E7%BB%8D) | 基于 `qiankun`,提供微服务能力 |
| [@fesjs/plugin-sass](https://winixt.gitee.io/fesjs/zh/reference/plugin/plugins/sass.html#%E4%BB%8B%E7%BB%8D) | 样式支持sass | | [@fesjs/plugin-sass](https://winixt.gitee.io/fesjs/zh/reference/plugin/plugins/sass.html#%E4%BB%8B%E7%BB%8D) | 样式支持sass |
| [@fesjs/plugin-monaco-editor](https://winixt.gitee.io/fesjs/zh/reference/plugin/plugins/editor.html#%E4%BB%8B%E7%BB%8D) | 提供代码编辑器能力, 基于`monaco-editor`VS Code使用的代码编辑器 | | [@fesjs/plugin-monaco-editor](https://winixt.gitee.io/fesjs/zh/reference/plugin/plugins/editor.html#%E4%BB%8B%E7%BB%8D) | 提供代码编辑器能力, 基于`monaco-editor`VS Code使用的代码编辑器 |
| [@fesjs/plugin-windicss](https://winixt.gitee.io/fesjs/zh/reference/plugin/plugins/windicss.html) | 基于 `windicss`,提供原子化 CSS 能力 |
## 像数 1, 2, 3 一样容易 ## 像数 1, 2, 3 一样容易
使用 `yarn` 使用 `yarn`

View File

@ -5,12 +5,13 @@ export default {
publicPath: './', publicPath: './',
access: { access: {
roles: { roles: {
admin: ["/", "/onepiece"] admin: ["*"],
manager: ["/"]
} }
}, },
layout: { layout: {
title: "Fes.js", title: "Fes.js",
footer: 'Created by MumbelFe', footer: 'Created by MumbleFe',
multiTabs: false, multiTabs: false,
menus: [{ menus: [{
name: 'index' name: 'index'

View File

@ -2,7 +2,7 @@ import { unref, computed } from 'vue';
import { plugin } from '@@/core/coreExports'; import { plugin } from '@@/core/coreExports';
const transTitle = (name) => { export const transTitle = (name) => {
const sharedLocale = plugin.getShared('locale'); const sharedLocale = plugin.getShared('locale');
if (sharedLocale) { if (sharedLocale) {
const { t } = sharedLocale.useI18n(); const { t } = sharedLocale.useI18n();

View File

@ -7,9 +7,13 @@
@tabClick="switchPage" @tabClick="switchPage"
@edit="onEdit" @edit="onEdit"
> >
<a-tab-pane v-for="page in pageList" :key="page.path" :closable="route.path !== page.path"> <a-tab-pane
v-for="page in pageList"
:key="page.path"
:closable="route.path !== page.path"
>
<template #tab> <template #tab>
{{page.name}} {{page.title}}
<ReloadOutlined <ReloadOutlined
v-show="route.path === page.path" v-show="route.path === page.path"
class="layout-tabs-close-icon" class="layout-tabs-close-icon"
@ -42,7 +46,9 @@
</router-view> </router-view>
</template> </template>
<script> <script>
import { reactive, unref } from 'vue'; import {
computed, onMounted, reactive, unref, ref
} from 'vue';
import Tabs from 'ant-design-vue/lib/tabs'; import Tabs from 'ant-design-vue/lib/tabs';
import Dropdown from 'ant-design-vue/lib/dropdown'; import Dropdown from 'ant-design-vue/lib/dropdown';
import Menu from 'ant-design-vue/lib/menu'; import Menu from 'ant-design-vue/lib/menu';
@ -51,6 +57,7 @@ import 'ant-design-vue/lib/dropdown/style/css';
import 'ant-design-vue/lib/tabs/style/css'; import 'ant-design-vue/lib/tabs/style/css';
import { ReloadOutlined, MoreOutlined } from '@ant-design/icons-vue'; import { ReloadOutlined, MoreOutlined } from '@ant-design/icons-vue';
import { useRouter, useRoute } from '@@/core/coreExports'; import { useRouter, useRoute } from '@@/core/coreExports';
import { transTitle } from '../helpers/pluginLocale';
let i = 0; let i = 0;
const getKey = () => ++i; const getKey = () => ++i;
@ -67,26 +74,28 @@ export default {
setup() { setup() {
const route = useRoute(); const route = useRoute();
const router = useRouter(); const router = useRouter();
const pageList = reactive([ const pageList = ref([]);
{
path: unref(route.path), const createPage = (route) => {
route: { const title = route.meta.title;
query: unref(route.query), return {
params: unref(route.params) path: route.path,
}, route,
name: unref(route.meta).name, name: route.meta.name,
title: computed(() => transTitle(title)),
key: getKey() key: getKey()
} };
]); };
const findPage = path => pageList.find(item => unref(item.path) === unref(path));
const findPage = path => pageList.value.find(item => unref(item.path) === unref(path));
onMounted(() => {
pageList.value = [createPage(route)];
});
router.beforeEach((to) => { router.beforeEach((to) => {
if (!findPage(to.path)) { if (!findPage(to.path)) {
pageList.push({ pageList.value = [...pageList.value, createPage(to)];
path: to.path,
route: to,
name: to.meta.name,
key: getKey()
});
} }
return true; return true;
}); });
@ -104,8 +113,10 @@ export default {
const onEdit = (targetKey, action) => { const onEdit = (targetKey, action) => {
if (action === 'remove') { if (action === 'remove') {
const selectedPage = findPage(targetKey); const selectedPage = findPage(targetKey);
const index = pageList.indexOf(selectedPage); const list = [...pageList.value];
pageList.splice(index, 1); const index = list.indexOf(selectedPage);
list.splice(index, 1);
pageList.value = list;
} }
}; };
const reloadPage = (path) => { const reloadPage = (path) => {
@ -116,8 +127,7 @@ export default {
}; };
const closeOtherPage = (path) => { const closeOtherPage = (path) => {
const selectedPage = findPage(path || unref(route.path)); const selectedPage = findPage(path || unref(route.path));
pageList.length = 0; pageList.value = [selectedPage];
pageList.push(selectedPage);
}; };
const getPageKey = (_route) => { const getPageKey = (_route) => {
const selectedPage = findPage(_route.path); const selectedPage = findPage(_route.path);

View File

@ -33,7 +33,7 @@ export default {
layout: { layout: {
title: "Fes.js", title: "Fes.js",
footer: "Created by MumbleFe", footer: "Created by MumbleFe",
multiTabs: false, multiTabs: true,
navigation: "mixin", navigation: "mixin",
theme: 'light', theme: 'light',
menus: [ menus: [