mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-05 19:41:57 +08:00
feat: plugin-access的运行时配置改为access
This commit is contained in:
parent
3e44f41933
commit
97c7739d02
@ -53,7 +53,7 @@ export default (api) => {
|
||||
}
|
||||
]);
|
||||
|
||||
api.addRuntimePluginKey(() => 'noAccessHandler');
|
||||
api.addRuntimePluginKey(() => 'access');
|
||||
|
||||
api.addRuntimePlugin(() => `@@/${absRuntimeFilePath}`);
|
||||
};
|
||||
|
@ -13,13 +13,13 @@ export function onRouterCreated({ router }) {
|
||||
if (canRoute) {
|
||||
next();
|
||||
} else {
|
||||
const noAccessHandler = plugin.applyPlugins({
|
||||
key: "noAccessHandler",
|
||||
const runtimeConfig = plugin.applyPlugins({
|
||||
key: "access",
|
||||
type: ApplyPluginsType.modify,
|
||||
initialValue: null,
|
||||
});
|
||||
if (noAccessHandler && typeof noAccessHandler === "function") {
|
||||
noAccessHandler(router, to, from);
|
||||
if (runtimeConfig.noAccessHandler && typeof runtimeConfig.noAccessHandler === "function") {
|
||||
runtimeConfig.noAccessHandler(router, to, from);
|
||||
}
|
||||
next(false);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user