Commit b5c789a2 authored by RuoYi's avatar RuoYi

防止空路由出现的警告,设置默认path=/

parent bb1324a7
......@@ -32,10 +32,6 @@ const permission = {
// 遍历后台传来的路由字符串,转换为组件对象
function filterAsyncRouter(asyncRouterMap) {
return asyncRouterMap.filter(route => {
if(!route.path){
// 防止空路由出现的警告,设置默认path
route.path = '/path';
}
if (route.component) {
// Layout组件特殊处理
if (route.component === 'Layout') {
......
......@@ -317,7 +317,7 @@ public class SysMenuServiceImpl implements ISysMenuService
// 非外链并且是一级目录(类型为菜单)
else if (isMeunFrame(menu))
{
routerPath = StringUtils.EMPTY;
routerPath = "/";
}
return routerPath;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment