From 529089b73cbcc54d4168efcdc598e4f32d606ed7 Mon Sep 17 00:00:00 2001 From: Esacpe <1113279529@qq.com> Date: Thu, 10 Jul 2025 20:07:17 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E7=9B=AE=E5=BD=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/router/index.js | 42 +++++-------------- .../MeetingRoom/components/detailForm.vue | 0 .../{ => JudgmentHome}/MeetingRoom/index.vue | 0 .../ResearchHome/index.vue | 0 4 files changed, 10 insertions(+), 32 deletions(-) rename src/views/backOfficeSystem/{ => JudgmentHome}/MeetingRoom/components/detailForm.vue (100%) rename src/views/backOfficeSystem/{ => JudgmentHome}/MeetingRoom/index.vue (100%) rename src/views/backOfficeSystem/{ResearchJudgment => JudgmentHome}/ResearchHome/index.vue (100%) diff --git a/src/router/index.js b/src/router/index.js index a30b15f..55eda0d 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -254,10 +254,7 @@ export const publicRoutes = [ { path: "/DatAcquisition", name: "DatAcquisition", - component: () => - import( - "@/views/backOfficeSystem/ResearchJudgment/DatAcquisition/index" - ), + component: () => import("@/views/backOfficeSystem/ResearchJudgment/DatAcquisition/index"), meta: { title: "情报数据采集", icon: "article" @@ -266,10 +263,7 @@ export const publicRoutes = [ { path: "/MoralAnalysis", name: "MoralAnalysis", - component: () => - import( - "@/views/backOfficeSystem/ResearchJudgment/MoralAnalysis/index" - ), + component: () =>import("@/views/backOfficeSystem/ResearchJudgment/MoralAnalysis/index"), meta: { title: "情报语义分析", icon: "article" @@ -278,10 +272,7 @@ export const publicRoutes = [ { path: "/IntelligenceManagement", name: "IntelligenceManagement", - component: () => - import( - "@/views/backOfficeSystem/ResearchJudgment/IntelligenceManagement/index" - ), + component: () =>import("@/views/backOfficeSystem/ResearchJudgment/IntelligenceManagement/index"), meta: { title: "情报管理", icon: "article" @@ -296,10 +287,7 @@ export const publicRoutes = [ { path: "/InstructionInformation", name: "InstructionInformation", - component: () => - import( - "@/views/backOfficeSystem/ResearchJudgment/InformationFlows/InstructionInformation/index" - ), + component: () =>import("@/views/backOfficeSystem/ResearchJudgment/InformationFlows/InstructionInformation/index"), meta: { title: "指令信息", icon: "article" @@ -308,10 +296,7 @@ export const publicRoutes = [ { path: "/StatisticalAnalysis", name: "StatisticalAnalysis", - component: () => - import( - "@/views/backOfficeSystem/ResearchJudgment/InformationFlows/StatisticalAnalysis/index" - ), + component: () =>import("@/views/backOfficeSystem/ResearchJudgment/InformationFlows/StatisticalAnalysis/index"), meta: { title: "情报统计分析", icon: "article" @@ -322,10 +307,7 @@ export const publicRoutes = [ { path: "/RecordsOperations", name: "RecordsOperations", - component: () => - import( - "@/views/backOfficeSystem/ResearchJudgment/RecordsOperations/index" - ), + component: () =>import("@/views/backOfficeSystem/ResearchJudgment/RecordsOperations/index"), meta: { title: "操作记录", icon: "article" @@ -455,8 +437,8 @@ export const publicRoutes = [ ] }, { - path: "/Research", - name: "Research", + path: "/JudgmentHome", + name: "JudgmentHome", redirect: "/ResearchHome", meta: { title: "研判首页", @@ -466,10 +448,7 @@ export const publicRoutes = [ { path: "/ResearchHome", name: "ResearchHome", - component: () => - import( - "@/views/backOfficeSystem/ResearchJudgment/ResearchHome/index" - ), + component: () =>import("@/views/backOfficeSystem/JudgmentHome/ResearchHome/index"), meta: { title: "研判首页", icon: "article" @@ -478,8 +457,7 @@ export const publicRoutes = [ { path: "/MeetingRoom", name: "MeetingRoom", - component: () => - import("@/views/backOfficeSystem/MeetingRoom/index"), + component: () => import("@/views/backOfficeSystem/JudgmentHome/MeetingRoom/index"), meta: { title: "网上会商室", icon: "article" diff --git a/src/views/backOfficeSystem/MeetingRoom/components/detailForm.vue b/src/views/backOfficeSystem/JudgmentHome/MeetingRoom/components/detailForm.vue similarity index 100% rename from src/views/backOfficeSystem/MeetingRoom/components/detailForm.vue rename to src/views/backOfficeSystem/JudgmentHome/MeetingRoom/components/detailForm.vue diff --git a/src/views/backOfficeSystem/MeetingRoom/index.vue b/src/views/backOfficeSystem/JudgmentHome/MeetingRoom/index.vue similarity index 100% rename from src/views/backOfficeSystem/MeetingRoom/index.vue rename to src/views/backOfficeSystem/JudgmentHome/MeetingRoom/index.vue diff --git a/src/views/backOfficeSystem/ResearchJudgment/ResearchHome/index.vue b/src/views/backOfficeSystem/JudgmentHome/ResearchHome/index.vue similarity index 100% rename from src/views/backOfficeSystem/ResearchJudgment/ResearchHome/index.vue rename to src/views/backOfficeSystem/JudgmentHome/ResearchHome/index.vue