module.exports = { adminMenu:[ { name: '首页', url: 'sub1', icon: 'usb', children: [ { name: '消息中心', url: 'index' }, ] }, { name: '技术需求管理', url: 'sub2', icon: 'bulb', children: [ { name: '技术需求库', url: 'library' }, { name: '需求发布审核', url: 'examine' }, ] }, { name: '技术成果管理', url: 'sub3', icon: 'woman', children: [ { name: '技术成果库', url: 'achievementLibrary' }, { name: '成果发布审核', url: 'achievementExamine' }, ] } ] }