mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-06 03:59:53 +08:00
feat: router name 优化
This commit is contained in:
parent
694e048146
commit
5fa3df704d
@ -94,24 +94,21 @@ const genRoutes = function (parentRoutes, path, parentRoutePath, config) {
|
||||
// 路由名称
|
||||
const routeName = getRouteName(parentRoutePath, fileName);
|
||||
const componentPath = getComponentPath(parentRoutePath, fileName, config);
|
||||
const routeMeta = routeMetaBlock?.content ? JSON.parse(routeMetaBlock.content) : {};
|
||||
const routeConfig = {
|
||||
path: routePath,
|
||||
component: componentPath,
|
||||
name: routeMeta.name || routeName,
|
||||
meta: routeMeta
|
||||
};
|
||||
if (hasLayout) {
|
||||
if (fileName === 'layout') {
|
||||
layoutRoute.component = componentPath;
|
||||
} else {
|
||||
layoutRoute.children.push({
|
||||
path: routePath,
|
||||
component: componentPath,
|
||||
name: routeName,
|
||||
meta: routeMetaBlock?.content ? JSON.parse(routeMetaBlock.content) : {}
|
||||
});
|
||||
layoutRoute.children.push(routeConfig);
|
||||
}
|
||||
} else {
|
||||
parentRoutes.push({
|
||||
path: routePath,
|
||||
component: componentPath,
|
||||
name: routeName,
|
||||
meta: routeMetaBlock?.content ? JSON.parse(routeMetaBlock.content) : {}
|
||||
});
|
||||
parentRoutes.push(routeConfig);
|
||||
}
|
||||
}
|
||||
});
|
||||
|
@ -7,6 +7,7 @@
|
||||
<config>
|
||||
{
|
||||
"title": "首页",
|
||||
"name": "testIndex",
|
||||
"layout": "false"
|
||||
}
|
||||
</config>
|
||||
|
Loading…
x
Reference in New Issue
Block a user