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/trainArchive ,页面地址 x/tms/trainArchive/index
| * 同时挂本地路由,避免菜单 pageAddress 配错导致 404
| */
| const tmsTrainArchiveRoutes: RouteRecordRaw[] = [
| {
| path: '/tms/trainArchive',
| name: 'TmsTrainArchive',
| component: () => import('#/views/x/tms/trainArchive/index.vue'),
| meta: {
| title: '个人培训档案',
| hideInMenu: true,
| ignoreAccess: true,
| },
| },
| ];
|
| export default tmsTrainArchiveRoutes;
|
|