|
@@ -761,7 +761,24 @@ export const dynamicRoutes = [
|
|
}]
|
|
}]
|
|
},
|
|
},
|
|
|
|
|
|
|
|
+ //****************** 商品管理 *******************//
|
|
|
|
|
|
|
|
+ // 商品推荐
|
|
|
|
+ {
|
|
|
|
+ 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'
|
|
|
|
+ }
|
|
|
|
+ }]
|
|
|
|
+ },
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@@ -939,23 +956,7 @@ export const dynamicRoutes = [
|
|
|
|
|
|
|
|
|
|
|
|
|
|
- // 商品管理
|
|
|
|
- // 商品推荐
|
|
|
|
- {
|
|
|
|
- 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'
|
|
|
|
- }
|
|
|
|
- }]
|
|
|
|
- },
|
|
|
|
|
|
+
|
|
|
|
|
|
|
|
|
|
|
|
|