diff --git a/src/router/routes/modules/dashboard.ts b/src/router/routes/modules/dashboard.ts index 0f01458..51eb53a 100644 --- a/src/router/routes/modules/dashboard.ts +++ b/src/router/routes/modules/dashboard.ts @@ -22,17 +22,16 @@ const DASHBOARD: AppRouteRecordRaw = { roles: ['*'], }, }, - - // { - // path: 'monitor', - // name: 'Monitor', - // component: () => import('@/views/dashboard/monitor/index.vue'), - // meta: { - // locale: 'menu.dashboard.monitor', - // requiresAuth: true, - // roles: ['*'], - // }, - // }, + { + path: 'channel', + name: 'Channel', + component: () => import('@/views/list/search-table/index.vue'), + meta: { + locale: '信道管理', + requiresAuth: true, + roles: ['*'], + }, + } ], }; diff --git a/src/router/routes/modules/list.ts b/src/router/routes/modules/list.ts index ce84a67..68d7303 100644 --- a/src/router/routes/modules/list.ts +++ b/src/router/routes/modules/list.ts @@ -12,16 +12,6 @@ const LIST: AppRouteRecordRaw = { order: 2, }, children: [ - // { - // path: 'search-table', // The midline path complies with SEO specifications - // name: 'SearchTable', - // component: () => import('@/views/list/search-table/index.vue'), - // meta: { - // locale: 'menu.list.searchTable', - // requiresAuth: true, - // roles: ['*'], - // }, - // }, { path: 'backup', name: 'Card', diff --git a/src/views/list/search-table/index.vue b/src/views/list/search-table/index.vue index e232195..1ab30dd 100644 --- a/src/views/list/search-table/index.vue +++ b/src/views/list/search-table/index.vue @@ -1,104 +1,7 @@