diff --git a/packages/fes-plugin-layout/package.json b/packages/fes-plugin-layout/package.json
index 5ae5a579..da450c6b 100644
--- a/packages/fes-plugin-layout/package.json
+++ b/packages/fes-plugin-layout/package.json
@@ -27,6 +27,9 @@
"publishConfig": {
"access": "public"
},
+ "dependencies": {
+ "@umijs/utils": "3.3.3"
+ },
"peerDependencies": {
"@ant-design/icons-vue": "^5.1.6",
"@webank/fes": "^2.0.0",
diff --git a/packages/fes-plugin-layout/src/index.js b/packages/fes-plugin-layout/src/index.js
index 0095de4f..38dbfc73 100644
--- a/packages/fes-plugin-layout/src/index.js
+++ b/packages/fes-plugin-layout/src/index.js
@@ -1,5 +1,6 @@
import { readFileSync, copyFileSync, statSync } from 'fs';
import { join } from 'path';
+import { winPath } from '@umijs/utils';
const namespace = 'plugin-layout';
@@ -18,16 +19,18 @@ export default (api) => {
}
});
- const absRuntimeFilePath = join(namespace, 'runtime.js');
+ api.addRuntimePluginKey(() => 'layout');
+
+ const absFilePath = join(namespace, 'index.js');
api.onGenerateFiles(() => {
// 文件写出
const userConfig = api.config.layout || {};
api.writeTmpFile({
- path: absRuntimeFilePath,
+ path: absFilePath,
content: Mustache.render(
- readFileSync(join(__dirname, 'template/runtime.tpl'), 'utf-8'),
+ readFileSync(join(__dirname, 'template/index.tpl'), 'utf-8'),
{
REPLACE_USER_CONFIG: JSON.stringify(userConfig),
HAS_LOCALE: api.pkg.dependencies?.['@webank/fes-plugin-locale']
@@ -58,7 +61,14 @@ export default (api) => {
});
});
- api.addRuntimePluginKey(() => 'layout');
-
- api.addRuntimePlugin(() => `@@/${absRuntimeFilePath}`);
+ // 把BaseLayout插入到路由配置中,作为跟路由
+ api.modifyRoutes(routes => [
+ {
+ path: '/',
+ component: winPath(
+ join(api.paths.absTmpPath || '', absFilePath)
+ ),
+ children: routes
+ }
+ ]);
};
diff --git a/packages/fes-plugin-layout/src/template/index.tpl b/packages/fes-plugin-layout/src/template/index.tpl
new file mode 100644
index 00000000..ff67008d
--- /dev/null
+++ b/packages/fes-plugin-layout/src/template/index.tpl
@@ -0,0 +1,41 @@
+import { reactive, defineComponent } from "vue";
+import { getRoutes, plugin, ApplyPluginsType } from "@@/core/coreExports";
+import BaseLayout from "./views/BaseLayout.vue";
+import { fillMenuData } from "./helpers";
+
+const userConfig = reactive({{{REPLACE_USER_CONFIG}}});
+
+const Layout = defineComponent({
+ name: 'Layout',
+ setup(){
+ const runtimeConfig = plugin.applyPlugins({
+ key: "layout",
+ type: ApplyPluginsType.modify,
+ initialValue: {},
+ });
+ const localeShared = plugin.getShared("locale");
+ const routeConfig = getRoutes();
+ userConfig.menus = fillMenuData(userConfig.menus, routeConfig);
+ return () => {
+ const slots = {
+ userCenter: () => {
+ if (runtimeConfig.userCenter) {
+ return (
+
+ );
+ }
+ return null;
+ },
+ locale: () => {
+ if (localeShared) {
+ return ;
+ }
+ return null;
+ },
+ };
+ return ;
+ };
+ }
+})
+
+export default Layout;
diff --git a/packages/fes-plugin-layout/src/template/runtime.tpl b/packages/fes-plugin-layout/src/template/runtime.tpl
deleted file mode 100644
index da4f8bdf..00000000
--- a/packages/fes-plugin-layout/src/template/runtime.tpl
+++ /dev/null
@@ -1,37 +0,0 @@
-import { reactive } from "vue";
-import { getRoutes, plugin, ApplyPluginsType } from "@@/core/coreExports";
-import BaseLayout from "./views/BaseLayout.vue";
-import { fillMenuData } from "./helpers";
-
-const userConfig = reactive({{{REPLACE_USER_CONFIG}}});
-export function rootContainer(childComponent, args) {
- const runtimeConfig = plugin.applyPlugins({
- key: "layout",
- type: ApplyPluginsType.modify,
- initialValue: {},
- });
- const localeShared = plugin.getShared("locale");
- const routeConfig = getRoutes();
- userConfig.menus = fillMenuData(userConfig.menus, routeConfig);
- return () => {
- const slots = {
- default: () => ,
- userCenter: () => {
- if(runtimeConfig.userCenter){
- return ()
- }
- return null
- },
- locale: () => {
- if(localeShared){
- return ()
- }
- return null
- }
- };
- return (
-
-
- );
- };
-}
\ No newline at end of file
diff --git a/packages/fes-plugin-layout/src/views/BaseLayout.vue b/packages/fes-plugin-layout/src/views/BaseLayout.vue
index 0dbfd332..40b451c9 100644
--- a/packages/fes-plugin-layout/src/views/BaseLayout.vue
+++ b/packages/fes-plugin-layout/src/views/BaseLayout.vue
@@ -23,24 +23,8 @@
-
-
-
-
- {{page.name}}
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+