DESKTOP-O04BTUJ\muzen пре 3 година
родитељ
комит
fbc1cc56c4
1 измењених фајлова са 33 додато и 0 уклоњено
  1. 33 0
      src/router/index.js

+ 33 - 0
src/router/index.js

@@ -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'
       }
     }]
+  },
+  // 商品管理
+  // 商品推荐
+  {
+    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'
+      }
+    }]
   }
 ]