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
  for (var i = 0; i < menuList.length; i++) {
105
  for (var i = 0; i < menuList.length; i++) {
106
    if (menuList[i].list && menuList[i].list.length >= 1) {
106
    if (menuList[i].list && menuList[i].list.length >= 1) {
107
      temp = temp.concat(menuList[i].list)
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
      menuList[i].url = menuList[i].url.replace(/^\//, '')
109
      menuList[i].url = menuList[i].url.replace(/^\//, '')
110
      var route = {
110
      var route = {
111
        path: menuList[i].url.replace('/', '-'),
111
        path: menuList[i].url.replace('/', '-'),