2023-10-25 10:26:14 +08:00
|
|
|
import type { AppRouteRecordRaw } from '../types';
|
2023-09-11 16:33:57 +08:00
|
|
|
import { DEFAULT_LAYOUT } from '../base';
|
|
|
|
|
|
|
|
|
|
const ASSET: AppRouteRecordRaw = {
|
2024-03-07 19:32:04 +08:00
|
|
|
name: 'assetModule',
|
2024-03-08 01:21:27 +08:00
|
|
|
path: '/asset-module',
|
2023-09-11 16:33:57 +08:00
|
|
|
component: DEFAULT_LAYOUT,
|
|
|
|
|
children: [
|
|
|
|
|
{
|
2024-03-07 19:32:04 +08:00
|
|
|
name: 'hostList',
|
2024-03-07 17:34:44 +08:00
|
|
|
path: '/host-list',
|
2023-12-01 01:54:50 +08:00
|
|
|
component: () => import('@/views/asset/host-list/index.vue'),
|
2023-09-20 12:13:02 +08:00
|
|
|
}, {
|
2024-03-07 19:32:04 +08:00
|
|
|
name: 'hostKey',
|
2024-03-07 17:34:44 +08:00
|
|
|
path: '/host-key',
|
2023-09-20 12:13:02 +08:00
|
|
|
component: () => import('@/views/asset/host-key/index.vue'),
|
|
|
|
|
}, {
|
2024-03-07 19:32:04 +08:00
|
|
|
name: 'hostIdentity',
|
2024-03-07 17:34:44 +08:00
|
|
|
path: '/host-identity',
|
2023-09-20 12:13:02 +08:00
|
|
|
component: () => import('@/views/asset/host-identity/index.vue'),
|
2023-12-01 01:54:50 +08:00
|
|
|
}, {
|
|
|
|
|
name: 'assetGrant',
|
2024-03-07 17:34:44 +08:00
|
|
|
path: '/asset-grant',
|
2023-12-01 01:54:50 +08:00
|
|
|
component: () => import('@/views/asset/grant/index.vue'),
|
2023-09-11 16:33:57 +08:00
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default ASSET;
|