2026-03-21 15:52:38 +08:00
|
|
|
import { DEFAULT_LAYOUT } from '../base'
|
|
|
|
|
import { AppRouteRecordRaw } from '../types'
|
|
|
|
|
|
|
|
|
|
const REMOTE: AppRouteRecordRaw = {
|
2026-03-21 16:19:06 +08:00
|
|
|
// path: '/dc',
|
|
|
|
|
// name: 'DC',
|
|
|
|
|
// component: DEFAULT_LAYOUT,
|
|
|
|
|
// meta: {
|
|
|
|
|
// locale: 'menu.dc',
|
|
|
|
|
// requiresAuth: true,
|
|
|
|
|
// icon: 'icon-desktop',
|
|
|
|
|
// order: 99,
|
|
|
|
|
// hideInMenu: true,
|
|
|
|
|
// },
|
|
|
|
|
// children: [
|
|
|
|
|
// {
|
|
|
|
|
// path: 'detail',
|
|
|
|
|
// name: 'DCDetail',
|
|
|
|
|
// component: () => import('@/views/ops/pages/dc/detail/index.vue'),
|
|
|
|
|
// meta: {
|
|
|
|
|
// locale: 'menu.dc.detail',
|
|
|
|
|
// requiresAuth: true,
|
|
|
|
|
// roles: ['*'],
|
|
|
|
|
// // is_full: true,
|
|
|
|
|
// isNewTab: true,
|
|
|
|
|
// },
|
|
|
|
|
// },
|
|
|
|
|
// {
|
|
|
|
|
// path: 'remote',
|
|
|
|
|
// name: 'DCRemote',
|
|
|
|
|
// component: () => import('@/views/ops/pages/dc/remote/index.vue'),
|
|
|
|
|
// meta: {
|
|
|
|
|
// locale: 'menu.dc.remote',
|
|
|
|
|
// requiresAuth: true,
|
|
|
|
|
// roles: ['*'],
|
|
|
|
|
// // is_full: true,
|
|
|
|
|
// isNewTab: true,
|
|
|
|
|
// },
|
|
|
|
|
// },
|
|
|
|
|
// ],
|
2026-03-21 15:52:38 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default REMOTE
|