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 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) : {}
});
} }
} }
}); });

View File

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