From 67c4729bb4eeb889b1a7c7c2dbecdb0c398dd9e8 Mon Sep 17 00:00:00 2001
From: 13404089107 <puwei@sinata.cn>
Date: 星期二, 01 四月 2025 11:58:59 +0800
Subject: [PATCH] 新增专业报告库审批页面
---
src/router/index.js | 49 +++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 49 insertions(+), 0 deletions(-)
diff --git a/src/router/index.js b/src/router/index.js
index 8c706f4..e67c9d5 100644
--- a/src/router/index.js
+++ b/src/router/index.js
@@ -92,6 +92,55 @@
component: () => import("../views/dataManagement/dispatching/list.vue"),
},
],
+ },
+ {
+ path: "/reportLibrary",
+ component: Parent,
+ meta: {
+ title: "专业报告库审批",
+ },
+ children: [
+ {
+ path: "/feasibilityStudy",
+ meta: {
+ title: "可研报告库",
+ keepAlive: true,
+ },
+ component: () => import("../views/reportLibrary/feasibilityStudy/index.vue"),
+ },
+ {
+ path: "/feasibilityReport",
+ meta: {
+ title: "可行报告库",
+ keepAlive: true,
+ },
+ component: () => import("../views/reportLibrary/feasibilityReport/index.vue"),
+ },
+ {
+ path: "/processDevelopment",
+ meta: {
+ title: "工艺开发工具",
+ keepAlive: true,
+ },
+ component: () => import("../views/reportLibrary/processDevelopment/index.vue"),
+ },
+ {
+ path: "/verificationRelease",
+ meta: {
+ title: "验证与发布",
+ keepAlive: true,
+ },
+ component: () => import("../views/reportLibrary/verificationRelease/index.vue"),
+ },
+ {
+ path: "/projectProposalLibrary",
+ meta: {
+ title: "立项报告库",
+ keepAlive: true,
+ },
+ component: () => import("../views/reportLibrary/projectProposalLibrary/index.vue"),
+ },
+ ],
}
],
},
--
Gitblit v1.7.1