1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
| import { DEFAULT_LAYOUT } from '../base';
| import { AppRouteRecordRaw } from '../types';
| const session: AppRouteRecordRaw = {
| path: '/intelligentAgent',
| name: 'intelligentAgent',
| component: DEFAULT_LAYOUT,
| meta: {
| locale: '智能体管理',
| requiresAuth: true,
| icon: 'icon-robot',
| order: 4,
| hideInMenu:false
| },
| children:[
| {
| path: '/intelligentAgent',
| name: 'intelligentAgent',
| component: () => import('@/views/dmx/IntelligentAgent/index.vue'),
| meta: {
| requiresAuth: true,
| hideInMenu:true,
| roles: ['*'],
| },
| },
| ]
| };
| export default session;
|
|