|
|
|
|
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('/', '-'),
|