From c94535b792e9df0d3bbeffa10f427624c7c10ee4 Mon Sep 17 00:00:00 2001 From: 董国庆 <364620639@qq.com> Date: 星期四, 29 五月 2025 13:54:21 +0800 Subject: [PATCH] Merge branch 'main' of http://120.76.84.145:10101/gitblit/r/H5/leshan-laboratory --- culture/src/router/index.js | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 44 insertions(+), 0 deletions(-) diff --git a/culture/src/router/index.js b/culture/src/router/index.js index 50e7391..07b6872 100644 --- a/culture/src/router/index.js +++ b/culture/src/router/index.js @@ -334,6 +334,18 @@ ), }, { + path: "edit-primitive-cell", + name: "AddPrimitiveCell", + meta: { + title: "编辑原始细胞库资料", + hide: true, + }, + component: () => + import( + "../views/strain-library/validation/primitive-cell/add.vue" + ), + }, + { path: "confirm-detail", name: "ConfirmDetail", meta: { @@ -354,6 +366,38 @@ component: () => import("../views/strain-library/validation/chief-cell"), }, + { + path: "add-chief-cell", + name: "AddChiefCell", + meta: { + title: "新增主细胞库资料", + hide: true, + }, + component: () => + import("../views/strain-library/validation/chief-cell/add.vue"), + }, + { + path: "edit-chief-cell", + name: "EditChiefCell", + meta: { + title: "编辑主细胞库资料", + hide: true, + }, + component: () => + import("../views/strain-library/validation/chief-cell/add.vue"), + }, + { + path: "confirm-detail-chief", + name: "ConfirmDetailChief", + meta: { + title: "确认主细胞库资料", + hide: true, + }, + component: () => + import( + "../views/strain-library/validation/chief-cell/confirm-detail.vue" + ), + }, ], }, ], -- Gitblit v1.7.1