Browse Source

修复菜单管理新增目录/按钮路由url为null时,报错bug

daxiongYang 6 years ago
parent
commit
2166c5eaed
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/router/index.js

+ 1 - 1
src/router/index.js

@ -105,7 +105,7 @@ function fnAddDynamicMenuRoutes (menuList = [], routes = []) {
105 105
  for (var i = 0; i < menuList.length; i++) {
106 106
    if (menuList[i].list && menuList[i].list.length >= 1) {
107 107
      temp = temp.concat(menuList[i].list)
108
    } else if (/\S/.test(menuList[i].url)) {
108
    } else if (menuList[i].url && /\S/.test(menuList[i].url)) {
109 109
      menuList[i].url = menuList[i].url.replace(/^\//, '')
110 110
      var route = {
111 111
        path: menuList[i].url.replace('/', '-'),