|
@@ -183,6 +183,22 @@ export const dynamicRoutes = [{
|
|
}
|
|
}
|
|
}]
|
|
}]
|
|
},
|
|
},
|
|
|
|
+ // AutoFM
|
|
|
|
+ {
|
|
|
|
+ path: '/content',
|
|
|
|
+ component: Layout,
|
|
|
|
+ hidden: true,
|
|
|
|
+ permissions: ['content:autoFM:list'],
|
|
|
|
+ children: [{
|
|
|
|
+ path: 'autoFM/detail',
|
|
|
|
+ component: () => import('@/views/content/autoFM/detail'),
|
|
|
|
+ name: 'detail',
|
|
|
|
+ meta: {
|
|
|
|
+ title: 'AutoFM详情',
|
|
|
|
+ activeMenu: '/content/autoFM'
|
|
|
|
+ }
|
|
|
|
+ }]
|
|
|
|
+ },
|
|
// 设备管理
|
|
// 设备管理
|
|
// 设备列表
|
|
// 设备列表
|
|
{
|
|
{
|
|
@@ -430,6 +446,23 @@ export const dynamicRoutes = [{
|
|
activeMenu: '/article/articleList'
|
|
activeMenu: '/article/articleList'
|
|
}
|
|
}
|
|
}]
|
|
}]
|
|
|
|
+ },
|
|
|
|
+ // 商品管理
|
|
|
|
+ // 商品推荐
|
|
|
|
+ {
|
|
|
|
+ path: '/goods',
|
|
|
|
+ component: Layout,
|
|
|
|
+ hidden: true,
|
|
|
|
+ permissions: ['goods:list:list'],
|
|
|
|
+ children: [{
|
|
|
|
+ path: 'goodsList/detail',
|
|
|
|
+ component: () => import('@/views/goods/list/detail'),
|
|
|
|
+ name: 'goodsListDetail',
|
|
|
|
+ meta: {
|
|
|
|
+ title: '商品详情',
|
|
|
|
+ activeMenu: '/goods/goodsList'
|
|
|
|
+ }
|
|
|
|
+ }]
|
|
}
|
|
}
|
|
]
|
|
]
|
|
|
|
|