feat: router name 优化

This commit is contained in:
winixt 2021-05-12 20:16:40 +08:00
parent 694e048146
commit 5fa3df704d
2 changed files with 10 additions and 12 deletions

View File

@ -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);
}
}
});

View File

@ -7,6 +7,7 @@
<config>
{
"title": "首页",
"name": "testIndex",
"layout": "false"
}
</config>