From cd47054e513f2e632ad67d3495eb8d9e35f99d82 Mon Sep 17 00:00:00 2001 From: pyt <626651354@qq.com> Date: 星期四, 08 五月 2025 11:08:18 +0800 Subject: [PATCH] Merge branch 'main' of http://120.76.84.145:10101/gitblit/r/H5/leshan-laboratory --- laboratory/src/router/index.js | 165 ++++++++++++++++++++++++++++++++++++++++++++++++++++++- 1 files changed, 162 insertions(+), 3 deletions(-) diff --git a/laboratory/src/router/index.js b/laboratory/src/router/index.js index ac6228f..fc39bc0 100644 --- a/laboratory/src/router/index.js +++ b/laboratory/src/router/index.js @@ -183,6 +183,31 @@ component: () => import("../views/dataManagement/confirmation-sheet/components/add.vue"), }, { + path: "scheme-management", + name: "schemeManagement", + meta: { + title: "实验方案管理", + }, + component: () => import("../views/dataManagement/schemeManagement/list.vue"), + }, + { + path: "scheme-management/add", + name: "addSchemeManagement", + meta: { + title: "添加实验方案", + hide: true, + }, + component: () => import("../views/dataManagement/schemeManagement/addPlan.vue"), + }, { + path: "scheme-management/stop-experiment", + name: "schemeManagementStopExperiment", + meta: { + title: "终止实验方案", + hide: true, + }, + component: () => import("../views/dataManagement/schemeManagement/stop-experiment.vue"), + }, + { path: "/sampleManage", meta: { title: "样品管理", @@ -317,6 +342,14 @@ }, component: () => import("../views/dataManagement/testResultReport/detail.vue"), }, + { + path: "suspendExperiment", + meta: { + title: "实验中止审批", + keepAlive: true, + }, + component: () => import("../views/dataManagement/suspendExperiment/list.vue"), + }, ], }, { @@ -378,6 +411,92 @@ ], }, { + path: "/chemistQa", + component: Layouts, + meta: { + title: "化验师QA专题报告", + }, + children: [ + { + path: "projectTesting", + meta: { + title: "项目检测项、检验包列表", + keepAlive: true, + }, + component: () => import("../views/chemistQa/projectTesting/index.vue"), + }, + { + path: "add", + meta: { + title: "新增检测项", + hide: true, + keepAlive: true, + }, + component: () => import("../views/chemistQa/projectTesting/add.vue"), + }, + { + path: "addDetectionReport", + meta: { + title: "新增报告", + hide: true, + keepAlive: true, + }, + component: () => import("../views/chemistQa/projectTesting/addDetectionReport.vue"), + }, + { + path: "pilotAndProduction", + meta: { + title: "中试、生产验证试验检验分析报告", + keepAlive: true, + }, + component: () => import("../views/chemistQa/pilotAndProduction/index.vue"), + }, + { + path: "addPilot", + meta: { + title: "新增中试、生产验证试验检验分析报告", + hide: true, + keepAlive: true, + }, + component: () => import("../views/chemistQa/pilotAndProduction/add.vue"), + }, + { + path: "rawMaterials", + meta: { + title: "原辅料、包材、竞品检验分析报告", + keepAlive: true, + }, + component: () => import("../views/chemistQa/rawMaterials/index.vue"), + }, + { + path: "addRawMaterials", + meta: { + title: "新增原辅料、包材、竞品检验分析报告", + hide: true, + keepAlive: true, + }, + component: () => import("../views/chemistQa/rawMaterials/add.vue"), + }, + { + path: "productApproval", + meta: { + title: "产品报批及项目工作总计报告", + keepAlive: true, + }, + component: () => import("../views/chemistQa/productApproval/index.vue"), + }, + { + path: "addProductApproval", + meta: { + title: "新增产品报批及项目工作总计报告", + hide: true, + keepAlive: true, + }, + component: () => import("../views/chemistQa/productApproval/add.vue"), + }, + ], + }, + { path: "/deliveryAssessment", component: Layouts, meta: { @@ -416,7 +535,7 @@ component: () => import("../views/deliveryAssessment/restsTask"), }, { - // 超级管理员 工艺工程师 + // 超级管理员 工艺工程师 审批人 path: "clinicalTrial", meta: { title: "临床试验积分列表", @@ -424,7 +543,7 @@ component: () => import("../views/deliveryAssessment/clinicalTrial"), }, { - // 化验师 审批人 + // 化验师 审批人 工艺工程师 path: "testingAndEvaluation", meta: { title: "检测项评定列表", @@ -448,7 +567,7 @@ component: () => import("../views/deliveryAssessment/assayTaskList"), }, { - // 工艺工程师 + // 工艺工程师 审批人 path: "processEngineerEvaluate", meta: { title: "工艺工程师工作评定详情", @@ -493,6 +612,46 @@ }, component: () => import("../views/deliveryAssessment/chemistEvaluate/add"), }, + { + // 工艺工程师 + path: "QAList", + name: 'QAList', + meta: { + title: "化验师QA专题报告评定", + keepAlive: true, + }, + component: () => import("../views/deliveryAssessment/QA"), + }, + { + // 审批人 + path: "experimenterJobEvaluation", + name: 'ExperimenterJobEvaluation', + meta: { + title: "实验员工作评定详情", + keepAlive: true, + }, + component: () => import("../views/deliveryAssessment/experimenterJobEvaluation"), + }, + { + // 审批人 + path: "technicianJobEvaluation", + name: 'TechnicianJobEvaluation', + meta: { + title: "化验师工作评定详情", + keepAlive: true, + }, + component: () => import("../views/deliveryAssessment/technicianJobEvaluation"), + }, + { + // 审批人 + path: "reportEvaluation", + name: 'ReportEvaluation', + meta: { + title: "专业报告库评定", + keepAlive: true, + }, + component: () => import("../views/deliveryAssessment/reportEvaluation"), + }, ] } ]; -- Gitblit v1.7.1