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;
