This commit is contained in:
lcw
2025-08-16 16:54:03 +08:00
parent 71487ac647
commit 42f5e37f65
69 changed files with 5913 additions and 978 deletions

View File

@ -16,6 +16,13 @@ import store from "@/store";
*/
export const privateRoutes = [
];
/**
* 公开路由表
*/
export const publicRoutes = [
{
path: "/systemConfig",
component: layout,
@ -124,13 +131,7 @@ export const privateRoutes = [
}
}
]
}
];
/**
* 公开路由表
*/
export const publicRoutes = [
},
{
path: "/login",
name: "login",
@ -146,6 +147,24 @@ export const publicRoutes = [
name: "KeyPopulations",
component: () => import("@/views/KeyPopulations/index") //系统登录
},
// 布控审核信息
{
path: "/deploymentApproval",
name: "deploymentApproval",
component: () => import("@/views/backOfficeSystem/ApprovalInformation/deploycontrol/deploymentApproval.vue"),
},
// 线索
{
path: "/clueVerification",
name: "clueVerification",
component: () => import("@/views/backOfficeSystem/ApprovalInformation/Clue/index.vue"),
},
// 重点人发掘
{
path: "/focusExploration",
name: "focusExploration",
component: () => import("@/views/backOfficeSystem/ApprovalInformation/FocusExploration/index.vue"),
},
{
path: "/editPassword", // 注意:带有路径“/”的记录中的组件“默认”是一个不返回 Promise 的函数
component: layout,
@ -365,7 +384,7 @@ export const publicRoutes = [
"@/views/backOfficeSystem/HumanIntelligence/TaskScheduling/index"
),
meta: {
title: "人力情报信息搜索任务调度",
title: "人力情报信息收集任务调度",
icon: "article"
}
},
@ -390,15 +409,15 @@ export const publicRoutes = [
icon: "article"
}
},
// {
// path: "/MakeAcomment",
// name: "MakeAcomment",
// component: () => import("@/views/backOfficeSystem/MakeAcomment/index"),
// meta: {
// title: "情报评一评",
// icon: "article"
// }
// }
{
path: "/MakeAcomment",
name: "MakeAcomment",
component: () => import("@/views/backOfficeSystem/MakeAcomment/index"),
meta: {
title: "情报评一评",
icon: "article"
}
}
]
},
{