From 27d52e22367c915ee9672e40caedd6ba1fae45ad Mon Sep 17 00:00:00 2001 From: Esacpe <1113279529@qq.com> Date: Mon, 19 May 2025 18:03:57 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E8=B7=AF=E7=94=B1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/router/index.js | 30 +++++++++++++++++++++++++----- 1 file changed, 25 insertions(+), 5 deletions(-) diff --git a/src/router/index.js b/src/router/index.js index be8e845..52053d2 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -382,14 +382,34 @@ export const publicRoutes = [ ] }, { - path: "/MeetingRoom", - name: "MeetingRoom", - component: () => import("@/views/backOfficeSystem/MeetingRoom/index"), + path: "/ResearchHome", + name: "ResearchHome", meta: { - title: "网上会商室", + title: "研判首页", icon: "article" - } + }, + children: [ + { + path: "/ResearchHome", + name: "ResearchHome", + component: () => import("@/views/backOfficeSystem/ResearchJudgment/ResearchHome/index"), + meta: { + title: "研判首页", + icon: "article" + }, + }, + { + path: "/MeetingRoom", + name: "MeetingRoom", + component: () => import("@/views/backOfficeSystem/MeetingRoom/index"), + meta: { + title: "网上会商室", + icon: "article" + } + }, + ] }, + ] } ];