推翻重来.

This commit is contained in:
lijiahang
2024-01-31 19:02:43 +08:00
parent e9d338f66e
commit 66ab7a7637
15 changed files with 464 additions and 34 deletions

View 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;

View File

@@ -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;

View File

@@ -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
}