mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-06 03:59:53 +08:00
Merge branch 'master' of https://github.com/WeBankFinTech/fes.js
This commit is contained in:
commit
917d268629
@ -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`:
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@fesjs/create-fes-app",
|
"name": "@fesjs/create-fes-app",
|
||||||
"version": "2.0.6",
|
"version": "2.0.7",
|
||||||
"description": "create a app base on fes.js",
|
"description": "create a app base on fes.js",
|
||||||
"main": "lib/index.js",
|
"main": "lib/index.js",
|
||||||
"files": [
|
"files": [
|
||||||
|
@ -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'
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@fesjs/plugin-layout",
|
"name": "@fesjs/plugin-layout",
|
||||||
"version": "2.0.6",
|
"version": "2.0.7",
|
||||||
"description": "@fesjs/plugin-layout",
|
"description": "@fesjs/plugin-layout",
|
||||||
"main": "lib/index.js",
|
"main": "lib/index.js",
|
||||||
"files": [
|
"files": [
|
||||||
|
@ -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();
|
||||||
|
@ -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);
|
||||||
|
@ -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: [
|
||||||
|
Loading…
x
Reference in New Issue
Block a user