diff --git a/packages/fes-plugin-layout/src/index.js b/packages/fes-plugin-layout/src/index.js index 8b464115..209e5988 100644 --- a/packages/fes-plugin-layout/src/index.js +++ b/packages/fes-plugin-layout/src/index.js @@ -24,7 +24,7 @@ export default (api) => { api.addRuntimePluginKey(() => 'layout'); - const absFilePath = join(namespace, 'index.js'); + const absFilePath = join(namespace, 'index.jsx'); const absRuntimeFilePath = join(namespace, 'runtime.js'); diff --git a/packages/fes-plugin-layout/src/runtime/runtime.js b/packages/fes-plugin-layout/src/runtime/runtime.js index c676984f..eaeb72f0 100644 --- a/packages/fes-plugin-layout/src/runtime/runtime.js +++ b/packages/fes-plugin-layout/src/runtime/runtime.js @@ -1,13 +1,11 @@ import { plugin, ApplyPluginsType } from '@@/core/coreExports'; // eslint-disable-next-line import/extensions import { access as accessApi } from '../plugin-access/core'; -import Exception404 from './views/404'; -import Exception403 from './views/403'; +import Exception404 from './views/404.vue'; +import Exception403 from './views/403.vue'; if (!accessApi) { - throw new Error( - '[plugin-layout]: pLugin-layout depends on plugin-access,please install plugin-access first!' - ); + throw new Error('[plugin-layout]: pLugin-layout depends on plugin-access,please install plugin-access first!'); } const handle = (type, router) => { @@ -16,7 +14,7 @@ const handle = (type, router) => { const name = `Exception${type}`; const components = { 404: Exception404, - 403: Exception403 + 403: Exception403, }; if (!accesssIds.includes(path)) { accessApi.setAccess(accesssIds.concat([path])); @@ -26,18 +24,19 @@ const handle = (type, router) => { } }; -export const access = memo => ({ - unAccessHandler({ - router, to, from, next - }) { +export const access = (memo) => ({ + unAccessHandler({ router, to, from, next }) { const runtimeConfig = plugin.applyPlugins({ key: 'layout', type: ApplyPluginsType.modify, - initialValue: {} + initialValue: {}, }); if (runtimeConfig.unAccessHandler && typeof runtimeConfig.unAccessHandler === 'function') { return runtimeConfig.unAccessHandler({ - router, to, from, next + router, + to, + from, + next, }); } if (to.path === '/404') { @@ -47,17 +46,18 @@ export const access = memo => ({ handle(403, router); next('/403'); }, - noFoundHandler({ - router, to, from, next - }) { + noFoundHandler({ router, to, from, next }) { const runtimeConfig = plugin.applyPlugins({ key: 'layout', type: ApplyPluginsType.modify, - initialValue: {} + initialValue: {}, }); if (runtimeConfig.noFoundHandler && typeof runtimeConfig.noFoundHandler === 'function') { return runtimeConfig.noFoundHandler({ - router, to, from, next + router, + to, + from, + next, }); } if (to.path === '/403') { @@ -67,5 +67,5 @@ export const access = memo => ({ handle(404, router); next('/404'); }, - ...memo + ...memo, }); diff --git a/packages/fes-plugin-layout/src/runtime/views/BaseLayout.vue b/packages/fes-plugin-layout/src/runtime/views/BaseLayout.vue index 83065240..a6f24beb 100644 --- a/packages/fes-plugin-layout/src/runtime/views/BaseLayout.vue +++ b/packages/fes-plugin-layout/src/runtime/views/BaseLayout.vue @@ -12,26 +12,12 @@ >