Prechádzať zdrojové kódy

管理后台-演出管理路由

panyong 3 rokov pred
rodič
commit
4e2d368b70

+ 20 - 8
htmldev/manage/src/router/modules/business.js

@@ -57,22 +57,34 @@ const businessRouter = {
       redirect: '/business/show/music',
       children: [
         {
-          path: 'music',
-          component: () => import('@/views/business/show/music/index'),
-          name: 'BusinessShowMusic',
+          path: 'selectSongs',
+          component: () => import('@/views/business/show/selectSongs/index'),
+          name: 'SelectSongs',
           meta: { title: '点歌记录' }
         },
+        {
+          path: 'reward',
+          component: () => import('@/views/business/show/reward/index'),
+          name: 'Reward',
+          meta: { title: '赞赏记录' }
+        },
         {
           path: 'plan',
           component: () => import('@/views/business/show/plan/index'),
-          name: 'BusinessShowPlan',
+          name: 'Plan',
           meta: { title: '演出安排' }
         },
         {
-          path: 'artList',
-          component: () => import('@/views/business/show/artList/index'),
-          name: 'BusinessShowArtList',
-          meta: { title: '艺人管理' }
+          path: 'playList',
+          component: () => import('@/views/business/show/playList/index'),
+          name: 'PlayList',
+          meta: { title: '艺人曲库' }
+        },
+        {
+          path: 'musicLib',
+          component: () => import('@/views/business/show/musicLib/index'),
+          name: 'MusicLib',
+          meta: { title: '曲库管理' }
         }
       ]
     },