mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-06 03:59:53 +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}`);
|
api.addRuntimePlugin(() => `@@/${absRuntimeFilePath}`);
|
||||||
};
|
};
|
||||||
|
@ -13,13 +13,13 @@ export function onRouterCreated({ router }) {
|
|||||||
if (canRoute) {
|
if (canRoute) {
|
||||||
next();
|
next();
|
||||||
} else {
|
} else {
|
||||||
const noAccessHandler = plugin.applyPlugins({
|
const runtimeConfig = plugin.applyPlugins({
|
||||||
key: "noAccessHandler",
|
key: "access",
|
||||||
type: ApplyPluginsType.modify,
|
type: ApplyPluginsType.modify,
|
||||||
initialValue: null,
|
initialValue: null,
|
||||||
});
|
});
|
||||||
if (noAccessHandler && typeof noAccessHandler === "function") {
|
if (runtimeConfig.noAccessHandler && typeof runtimeConfig.noAccessHandler === "function") {
|
||||||
noAccessHandler(router, to, from);
|
runtimeConfig.noAccessHandler(router, to, from);
|
||||||
}
|
}
|
||||||
next(false);
|
next(false);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user