推翻重来.
This commit is contained in:
18
orion-ops-ui/src/router/routes/modules/host-audit.ts
Normal file
18
orion-ops-ui/src/router/routes/modules/host-audit.ts
Normal file
@@ -0,0 +1,18 @@
|
||||
import type { AppRouteRecordRaw } from '../types';
|
||||
import { DEFAULT_LAYOUT } from '../base';
|
||||
|
||||
const HOST_AUDIT: AppRouteRecordRaw =
|
||||
{
|
||||
name: 'hostAudit',
|
||||
path: '/host-audit',
|
||||
component: DEFAULT_LAYOUT,
|
||||
children: [
|
||||
{
|
||||
name: 'hostAuditConnectLog',
|
||||
path: '/host-audit/connect-log',
|
||||
component: () => import('@/views/host-audit/connect-log/index.vue'),
|
||||
},
|
||||
],
|
||||
};
|
||||
|
||||
export default HOST_AUDIT;
|
||||
@@ -1,18 +0,0 @@
|
||||
import type { AppRouteRecordRaw } from '../types';
|
||||
import { DEFAULT_LAYOUT } from '../base';
|
||||
|
||||
const HOST_REVIEW: AppRouteRecordRaw =
|
||||
{
|
||||
name: 'hostReview',
|
||||
path: '/host-review',
|
||||
component: DEFAULT_LAYOUT,
|
||||
children: [
|
||||
{
|
||||
name: 'hostReviewConnectLog',
|
||||
path: '/host-review/connect-log',
|
||||
component: () => import('@/views/host-review/connect-log/index.vue'),
|
||||
},
|
||||
],
|
||||
};
|
||||
|
||||
export default HOST_REVIEW;
|
||||
@@ -7,9 +7,9 @@ const HOST: AppRouteRecordRaw = {
|
||||
component: FULL_LAYOUT,
|
||||
children: [
|
||||
{
|
||||
name: 'hostTerminal',
|
||||
path: '/host/terminal',
|
||||
component: () => import('@/views/host/terminal/index.vue'),
|
||||
name: 'hostSpace',
|
||||
path: '/host/space',
|
||||
component: () => import('@/views/host/space/index.vue'),
|
||||
meta: {
|
||||
noAffix: true
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user