瀏覽代碼

管理后台-演出管理路由

panyong 3 年之前
父節點
當前提交
4e2d368b70
共有 1 個文件被更改,包括 20 次插入8 次删除
  1. 20 8
      htmldev/manage/src/router/modules/business.js

+ 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: '曲库管理' }
         }
       ]
     },