// === 安全教育培训 === 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;