| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- // === 安全教育培训 ===
- import { RouteComponent } from "vue-router";
- const safetyTrainingAndEducationRoutes: RouteComponent[] = [{
- id: 9006,
- parentId: 9000,
- name: 'safetyTrainingAndEducation',
- path: 'safety-training-and-education',
- redirect: '/work-safety/safety-training-and-education/education-training-plan-management',
- meta: {
- title: '安全教育培训',
- icon: 'BookOpenText',
- isRoot: false,
- hidden: false,
- noCache: false,
- },
- children: [
- {
- id: 900601,
- parentId: 9006,
- name: 'educationTrainingPlanManagement',
- path: 'education-training-plan-management',
- component: '/production-safety/safetyTrainingAndEducation/educationTrainingPlanManagement/educationTrainingPlanManagement',
- meta: {
- title: '教育培训计划管理(管理员)',
- icon: 'OverviewIcon',
- isRoot: false,
- hidden: false,
- noCache: false,
- },
- },
- {
- id: 90060101,
- parentId: 900601,
- name: 'educationTrainingPlanManagementItem',
- path: 'education-training-plan-management-item',
- component: '/production-safety/safetyTrainingAndEducation/educationTrainingPlanManagement/educationTrainingPlanManagementItem',
- meta: {
- title: '教育培训计划管理(管理员)详情',
- icon: 'OverviewIcon',
- isRoot: false,
- hidden: true,
- noCache: false,
- },
- },
- {
- id: 900602,
- parentId: 9006,
- name: 'educationTrainingPlanManagementDept',
- path: 'education-training-plan-management-dept',
- component: '/production-safety/safetyTrainingAndEducation/educationTrainingPlanManagementDept/educationTrainingPlanManagementDept',
- meta: {
- title: '教育培训计划管理(部门)',
- icon: 'OverviewIcon',
- isRoot: false,
- hidden: false,
- noCache: false,
- },
- },
- {
- id: 90060201,
- parentId: 900602,
- name: 'educationTrainingPlanManagementDeptItem',
- path: 'education-training-plan-management-dept-item',
- component: '/production-safety/safetyTrainingAndEducation/educationTrainingPlanManagementDept/educationTrainingPlanManagementDeptItem',
- meta: {
- title: '教育培训计划管理(部门)详情',
- icon: 'OverviewIcon',
- isRoot: false,
- hidden: true,
- noCache: false,
- },
- },
- {
- id: 90060202,
- parentId: 9006,
- name: 'employeeTrainingRecordCardManagement',
- path: 'employee-training-record-card-management',
- component: '/production-safety/safetyTrainingAndEducation/employeeTrainingRecordCardManagement/employeeTrainingRecordCardManagement',
- meta: {
- title: '员工培训记录卡管理',
- icon: 'OverviewIcon',
- isRoot: false,
- hidden: false,
- noCache: false,
- },
- },
- {
- id: 90060203,
- parentId: 90060202,
- name: 'employeeTrainingRecordCardManagementItem',
- path: 'employee-training-record-card-management-item',
- component: '/production-safety/safetyTrainingAndEducation/employeeTrainingRecordCardManagement/employeeTrainingRecordCardManagementItem',
- meta: {
- title: '员工培训记录卡管理详情',
- icon: 'OverviewIcon',
- isRoot: false,
- hidden: true,
- noCache: false,
- },
- },
- ],
- }];
- export default safetyTrainingAndEducationRoutes;
|