This commit is contained in:
2023-12-03 15:14:02 +08:00
parent cfbfaf7938
commit f7d3a2128a
16 changed files with 1334 additions and 1 deletions

View File

@@ -210,6 +210,24 @@ const routes: Array<RouteRecordRaw> = [
danmaku: true,
},
},
{
path: 'live',
name: 'manage-live',
component: () => import('@/views/manage/LiveManager.vue'),
meta: {
title: '直播记录',
keepAlive: true,
},
},
{
path: 'live/:id',
name: 'manage-liveDetail',
component: () => import('@/views/manage/LiveDetailManage.vue'),
meta: {
title: '直播详情',
keepAlive: true,
},
},
],
},
{