zhangxiao
2024-08-05 f6ba464aa7856b8201e313fe79e651aab34e6509
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
import { DEFAULT_LAYOUT } from '../base';
import { AppRouteRecordRaw } from '../types';
 
const DMX: AppRouteRecordRaw = {
  path: '/dmx',
  name: 'dmx',
  component: DEFAULT_LAYOUT,
  meta: {
    locale: '大模型',
    icon: 'icon-user',
    requiresAuth: true,
    order: 0,
  },
  children: [
    {
      path: 'knowledgeLib',
      name: 'knowledgeLib',
      component: () => import('@/views/dmx/knowledgeLib/index.vue'),
      meta: {
        locale: '知识库管理',
        requiresAuth: true,
        roles: ['*'],
      },
    },
    {
      path: 'model',
      name: 'Model',
      component: () => import('@/views/dmx/model/index.vue'),
      meta: {
        locale: '模型管理',
        requiresAuth: true,
        roles: ['*'],
      },
    },
    {
      path: 'intelligentAgent',
      name: 'IntelligentAgent',
      component: () => import('@/views/dmx/IntelligentAgent/index.vue'),
      meta: {
        locale: '智能体管理',
        requiresAuth: true,
        roles: ['*'],
      },
    },
  ],
};
 
export default DMX;