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 routeName = getRouteName(parentRoutePath, fileName);
|
||||||
const componentPath = getComponentPath(parentRoutePath, fileName, config);
|
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 (hasLayout) {
|
||||||
if (fileName === 'layout') {
|
if (fileName === 'layout') {
|
||||||
layoutRoute.component = componentPath;
|
layoutRoute.component = componentPath;
|
||||||
} else {
|
} else {
|
||||||
layoutRoute.children.push({
|
layoutRoute.children.push(routeConfig);
|
||||||
path: routePath,
|
|
||||||
component: componentPath,
|
|
||||||
name: routeName,
|
|
||||||
meta: routeMetaBlock?.content ? JSON.parse(routeMetaBlock.content) : {}
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
parentRoutes.push({
|
parentRoutes.push(routeConfig);
|
||||||
path: routePath,
|
|
||||||
component: componentPath,
|
|
||||||
name: routeName,
|
|
||||||
meta: routeMetaBlock?.content ? JSON.parse(routeMetaBlock.content) : {}
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
@ -7,6 +7,7 @@
|
|||||||
<config>
|
<config>
|
||||||
{
|
{
|
||||||
"title": "首页",
|
"title": "首页",
|
||||||
|
"name": "testIndex",
|
||||||
"layout": "false"
|
"layout": "false"
|
||||||
}
|
}
|
||||||
</config>
|
</config>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user