1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| import type { RouteRecordRaw } from 'vue-router';
|
| /**
| * 个人培训记录
| * 菜单:路由 /tms/trainRecord ,页面地址 x/tms/trainRecord/index
| * 培训目录详情已挂 basicRoutes
| */
| const tmsTrainRecordRoutes: RouteRecordRaw[] = [
| {
| path: '/tms/trainRecord',
| name: 'TmsTrainRecord',
| component: () => import('#/views/x/tms/trainRecord/index.vue'),
| meta: {
| title: '个人培训记录',
| hideInMenu: true,
| ignoreAccess: true,
| },
| },
| ];
|
| export default tmsTrainRecordRoutes;
|
|