Explorar el Código

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

daxiongYang %!s(int64=6) %!d(string=hace) años
padre
commit
2166c5eaed
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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('/', '-'),