对接’我的布控的增删查改‘,布控审核送审
This commit is contained in:
@ -29,7 +29,8 @@ export const privateRoutes = [
|
||||
{
|
||||
path: "/user/department-ist",
|
||||
name: "departmentList",
|
||||
component: () => import("@/views/backOfficeSystem/systemConfig/department-list/index"),
|
||||
component: () =>
|
||||
import("@/views/backOfficeSystem/systemConfig/department-list/index"),
|
||||
meta: {
|
||||
title: "部门管理",
|
||||
icon: "article-ranking"
|
||||
@ -39,7 +40,8 @@ export const privateRoutes = [
|
||||
{
|
||||
path: "/user/userList",
|
||||
name: "userList",
|
||||
component: () => import("@/views/backOfficeSystem/systemConfig/user-list/index"),
|
||||
component: () =>
|
||||
import("@/views/backOfficeSystem/systemConfig/user-list/index"),
|
||||
meta: {
|
||||
title: "用户管理",
|
||||
icon: "article-ranking"
|
||||
@ -48,7 +50,8 @@ export const privateRoutes = [
|
||||
{
|
||||
path: "/user/role",
|
||||
name: "userRoleIndex",
|
||||
component: () => import("@/views/backOfficeSystem/systemConfig/role-list/index"),
|
||||
component: () =>
|
||||
import("@/views/backOfficeSystem/systemConfig/role-list/index"),
|
||||
meta: {
|
||||
title: "角色列表",
|
||||
icon: "article-ranking"
|
||||
@ -57,7 +60,8 @@ export const privateRoutes = [
|
||||
{
|
||||
path: "/user/menuList",
|
||||
name: "menuList",
|
||||
component: () => import("@/views/backOfficeSystem/systemConfig/menu-list/index"),
|
||||
component: () =>
|
||||
import("@/views/backOfficeSystem/systemConfig/menu-list/index"),
|
||||
meta: {
|
||||
title: "菜单管理",
|
||||
icon: "article-ranking"
|
||||
@ -67,7 +71,8 @@ export const privateRoutes = [
|
||||
{
|
||||
path: "/dict/detail",
|
||||
name: "dictDetail",
|
||||
component: () => import("@/views/backOfficeSystem/systemConfig/dict/detail"),
|
||||
component: () =>
|
||||
import("@/views/backOfficeSystem/systemConfig/dict/detail"),
|
||||
meta: {
|
||||
title: "字典数据"
|
||||
}
|
||||
@ -75,7 +80,8 @@ export const privateRoutes = [
|
||||
{
|
||||
path: "/dict/index",
|
||||
name: "dictIndex",
|
||||
component: () => import("@/views/backOfficeSystem/systemConfig/dict/index"),
|
||||
component: () =>
|
||||
import("@/views/backOfficeSystem/systemConfig/dict/index"),
|
||||
meta: {
|
||||
title: "字典列表",
|
||||
icon: "article-ranking"
|
||||
@ -85,7 +91,10 @@ export const privateRoutes = [
|
||||
{
|
||||
path: "/user/deptAllocationUser/:id",
|
||||
name: "deptAllocationUser",
|
||||
component: () => import("@/views/backOfficeSystem/systemConfig/department-list/deptAllocationUser"),
|
||||
component: () =>
|
||||
import(
|
||||
"@/views/backOfficeSystem/systemConfig/department-list/deptAllocationUser"
|
||||
),
|
||||
meta: {
|
||||
title: "管理用户"
|
||||
}
|
||||
@ -93,7 +102,10 @@ export const privateRoutes = [
|
||||
{
|
||||
path: "/user/allocationUser/:id",
|
||||
name: "allocationUser",
|
||||
component: () => import("@/views/backOfficeSystem/systemConfig/role-list/allocationUser"),
|
||||
component: () =>
|
||||
import(
|
||||
"@/views/backOfficeSystem/systemConfig/role-list/allocationUser"
|
||||
),
|
||||
meta: {
|
||||
title: "分配用户"
|
||||
}
|
||||
@ -102,7 +114,10 @@ export const privateRoutes = [
|
||||
{
|
||||
path: "/user/systemConfig",
|
||||
name: "systemConfig",
|
||||
component: () => import("@/views/backOfficeSystem/systemConfig/system-config-list/index"),
|
||||
component: () =>
|
||||
import(
|
||||
"@/views/backOfficeSystem/systemConfig/system-config-list/index"
|
||||
),
|
||||
meta: {
|
||||
title: "系统配置",
|
||||
icon: "article-ranking"
|
||||
@ -144,7 +159,10 @@ export const publicRoutes = [
|
||||
{
|
||||
path: "/IdentityManage",
|
||||
name: "IdentityManage",
|
||||
component: () => import("@/views/backOfficeSystem/fourColorManage/IdentityManage/index"),
|
||||
component: () =>
|
||||
import(
|
||||
"@/views/backOfficeSystem/fourColorManage/IdentityManage/index"
|
||||
),
|
||||
meta: {
|
||||
title: "身份标签管理",
|
||||
icon: "article"
|
||||
@ -153,7 +171,10 @@ export const publicRoutes = [
|
||||
{
|
||||
path: "/BehaviorLabels",
|
||||
name: "BehaviorLabels",
|
||||
component: () => import("@/views/backOfficeSystem/fourColorManage/BehaviorLabels/index"),
|
||||
component: () =>
|
||||
import(
|
||||
"@/views/backOfficeSystem/fourColorManage/BehaviorLabels/index"
|
||||
),
|
||||
meta: {
|
||||
title: "行为标签管理",
|
||||
icon: "article"
|
||||
@ -162,7 +183,10 @@ export const publicRoutes = [
|
||||
{
|
||||
path: "/tagManage",
|
||||
name: "tagManage",
|
||||
component: () => import("@/views/backOfficeSystem/fourColorManage/tagManage/index"),
|
||||
component: () =>
|
||||
import(
|
||||
"@/views/backOfficeSystem/fourColorManage/tagManage/index"
|
||||
),
|
||||
meta: {
|
||||
title: "标签组合管理",
|
||||
icon: "article"
|
||||
@ -178,7 +202,10 @@ export const publicRoutes = [
|
||||
{
|
||||
path: "/warningControl",
|
||||
name: "warningControl",
|
||||
component: () => import("@/views/backOfficeSystem/IntelligentControl/warningControl/index"),
|
||||
component: () =>
|
||||
import(
|
||||
"@/views/backOfficeSystem/IntelligentControl/warningControl/index"
|
||||
),
|
||||
meta: {
|
||||
title: "预警布控",
|
||||
icon: "article"
|
||||
@ -187,7 +214,10 @@ export const publicRoutes = [
|
||||
{
|
||||
path: "/myControl",
|
||||
name: "myControl",
|
||||
component: () => import("@/views/backOfficeSystem/IntelligentControl/myControl/index"),
|
||||
component: () =>
|
||||
import(
|
||||
"@/views/backOfficeSystem/IntelligentControl/myControl/index"
|
||||
),
|
||||
meta: {
|
||||
title: "我的布控",
|
||||
icon: "article"
|
||||
@ -196,7 +226,10 @@ export const publicRoutes = [
|
||||
{
|
||||
path: "/ControlApproval",
|
||||
name: "ControlApproval",
|
||||
component: () => import("@/views/backOfficeSystem/IntelligentControl/ControlApproval/index"),
|
||||
component: () =>
|
||||
import(
|
||||
"@/views/backOfficeSystem/IntelligentControl/ControlApproval/index"
|
||||
),
|
||||
meta: {
|
||||
title: "布控审批",
|
||||
icon: "article"
|
||||
@ -212,7 +245,10 @@ 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"
|
||||
@ -221,7 +257,10 @@ 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"
|
||||
@ -230,7 +269,10 @@ 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"
|
||||
@ -246,7 +288,9 @@ export const publicRoutes = [
|
||||
path: "/InformationFlow",
|
||||
name: "InformationFlow",
|
||||
component: () =>
|
||||
import("@/views/backOfficeSystem/ResearchJudgment/InformationFlows/InformationFlow/index"),
|
||||
import(
|
||||
"@/views/backOfficeSystem/ResearchJudgment/InformationFlows/InformationFlow/index"
|
||||
),
|
||||
meta: {
|
||||
title: "情报信息流转",
|
||||
icon: "article"
|
||||
@ -256,7 +300,9 @@ export const publicRoutes = [
|
||||
path: "/InstructionInformation",
|
||||
name: "InstructionInformation",
|
||||
component: () =>
|
||||
import("@/views/backOfficeSystem/ResearchJudgment/InformationFlows/InstructionInformation/index"),
|
||||
import(
|
||||
"@/views/backOfficeSystem/ResearchJudgment/InformationFlows/InstructionInformation/index"
|
||||
),
|
||||
meta: {
|
||||
title: "指令信息",
|
||||
icon: "article"
|
||||
@ -266,7 +312,9 @@ export const publicRoutes = [
|
||||
path: "/StatisticalAnalysis",
|
||||
name: "StatisticalAnalysis",
|
||||
component: () =>
|
||||
import("@/views/backOfficeSystem/ResearchJudgment/InformationFlows/StatisticalAnalysis/index"),
|
||||
import(
|
||||
"@/views/backOfficeSystem/ResearchJudgment/InformationFlows/StatisticalAnalysis/index"
|
||||
),
|
||||
meta: {
|
||||
title: "情报统计分析",
|
||||
icon: "article"
|
||||
@ -277,7 +325,10 @@ 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"
|
||||
@ -293,7 +344,10 @@ export const publicRoutes = [
|
||||
{
|
||||
path: "/RlStatisticalAnalysis",
|
||||
name: "RlStatisticalAnalysis",
|
||||
component: () => import("@/views/backOfficeSystem/HumanIntelligence/RlStatisticalAnalysis/index"),
|
||||
component: () =>
|
||||
import(
|
||||
"@/views/backOfficeSystem/HumanIntelligence/RlStatisticalAnalysis/index"
|
||||
),
|
||||
meta: {
|
||||
title: "人力情报统计分析",
|
||||
icon: "article"
|
||||
@ -302,7 +356,10 @@ export const publicRoutes = [
|
||||
{
|
||||
path: "/CollectCrculate",
|
||||
name: "CollectCrculate",
|
||||
component: () => import("@/views/backOfficeSystem/HumanIntelligence/CollectCrculate/index"),
|
||||
component: () =>
|
||||
import(
|
||||
"@/views/backOfficeSystem/HumanIntelligence/CollectCrculate/index"
|
||||
),
|
||||
meta: {
|
||||
title: "人力情报信息采集流转",
|
||||
icon: "article"
|
||||
@ -311,7 +368,10 @@ export const publicRoutes = [
|
||||
{
|
||||
path: "/TaskScheduling",
|
||||
name: "TaskScheduling",
|
||||
component: () => import("@/views/backOfficeSystem/HumanIntelligence/TaskScheduling/index"),
|
||||
component: () =>
|
||||
import(
|
||||
"@/views/backOfficeSystem/HumanIntelligence/TaskScheduling/index"
|
||||
),
|
||||
meta: {
|
||||
title: "人力情报信息搜索任务调度",
|
||||
icon: "article"
|
||||
@ -320,7 +380,10 @@ export const publicRoutes = [
|
||||
{
|
||||
path: "/ConstructionManagement",
|
||||
name: "ConstructionManagement",
|
||||
component: () => import("@/views/backOfficeSystem/HumanIntelligence/ConstructionManagement/index"),
|
||||
component: () =>
|
||||
import(
|
||||
"@/views/backOfficeSystem/HumanIntelligence/ConstructionManagement/index"
|
||||
),
|
||||
meta: {
|
||||
title: "社会信息人员建设管理",
|
||||
icon: "article"
|
||||
@ -336,7 +399,10 @@ export const publicRoutes = [
|
||||
{
|
||||
path: "/ZdryFjyp",
|
||||
name: "ZdryFjyp",
|
||||
component: () => import("@/views/backOfficeSystem/ExcavationResearch/ZdryFjyp/index"),
|
||||
component: () =>
|
||||
import(
|
||||
"@/views/backOfficeSystem/ExcavationResearch/ZdryFjyp/index"
|
||||
),
|
||||
meta: {
|
||||
title: "重点人员发掘研判",
|
||||
icon: "article"
|
||||
@ -345,7 +411,10 @@ export const publicRoutes = [
|
||||
{
|
||||
path: "/PreliminaryExcavations",
|
||||
name: "PreliminaryExcavations",
|
||||
component: () => import("@/views/backOfficeSystem/ExcavationResearch/PreliminaryExcavations/index"),
|
||||
component: () =>
|
||||
import(
|
||||
"@/views/backOfficeSystem/ExcavationResearch/PreliminaryExcavations/index"
|
||||
),
|
||||
meta: {
|
||||
title: "重点人员初步发掘",
|
||||
icon: "article"
|
||||
@ -354,7 +423,10 @@ export const publicRoutes = [
|
||||
{
|
||||
path: "/LandingAudit",
|
||||
name: "LandingAudit",
|
||||
component: () => import("@/views/backOfficeSystem/ExcavationResearch/LandingAudit/index"),
|
||||
component: () =>
|
||||
import(
|
||||
"@/views/backOfficeSystem/ExcavationResearch/LandingAudit/index"
|
||||
),
|
||||
meta: {
|
||||
title: "重点人员落地审核",
|
||||
icon: "article"
|
||||
@ -363,7 +435,10 @@ export const publicRoutes = [
|
||||
{
|
||||
path: "/WarningModel",
|
||||
name: "WarningModel",
|
||||
component: () => import("@/views/backOfficeSystem/ExcavationResearch/WarningModel/index"),
|
||||
component: () =>
|
||||
import(
|
||||
"@/views/backOfficeSystem/ExcavationResearch/WarningModel/index"
|
||||
),
|
||||
meta: {
|
||||
title: "重点人员预警模型",
|
||||
icon: "article"
|
||||
@ -383,21 +458,25 @@ export const publicRoutes = [
|
||||
{
|
||||
path: "/ResearchHome",
|
||||
name: "ResearchHome",
|
||||
component: () => import("@/views/backOfficeSystem/ResearchJudgment/ResearchHome/index"),
|
||||
component: () =>
|
||||
import(
|
||||
"@/views/backOfficeSystem/ResearchJudgment/ResearchHome/index"
|
||||
),
|
||||
meta: {
|
||||
title: "研判首页",
|
||||
icon: "article"
|
||||
},
|
||||
}
|
||||
},
|
||||
{
|
||||
path: "/MeetingRoom",
|
||||
name: "MeetingRoom",
|
||||
component: () => import("@/views/backOfficeSystem/MeetingRoom/index"),
|
||||
component: () =>
|
||||
import("@/views/backOfficeSystem/MeetingRoom/index"),
|
||||
meta: {
|
||||
title: "网上会商室",
|
||||
icon: "article"
|
||||
}
|
||||
},
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
@ -412,23 +491,51 @@ export const publicRoutes = [
|
||||
{
|
||||
path: "/mpvGroup",
|
||||
name: "mpvGroup",
|
||||
component: () => import("@/views/backOfficeSystem/DeploymentDisposal/mpvGroup/index"),
|
||||
component: () =>
|
||||
import(
|
||||
"@/views/backOfficeSystem/DeploymentDisposal/mpvGroup/index"
|
||||
),
|
||||
meta: {
|
||||
title: "重点群体管理",
|
||||
icon: "article"
|
||||
},
|
||||
}
|
||||
},
|
||||
{
|
||||
path: "/mpvPeo",
|
||||
name: "mpvPeo",
|
||||
component: () => import("@/views/backOfficeSystem/DeploymentDisposal/mpvPeo/index"),
|
||||
component: () =>
|
||||
import(
|
||||
"@/views/backOfficeSystem/DeploymentDisposal/mpvPeo/index"
|
||||
),
|
||||
meta: {
|
||||
title: "重点人管理",
|
||||
icon: "article"
|
||||
},
|
||||
},
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
path: "/BasicManagement",
|
||||
name: "BasicManagement",
|
||||
meta: {
|
||||
title: "基础管理",
|
||||
icon: "article"
|
||||
},
|
||||
children: [
|
||||
{
|
||||
path: "/surveillanceControl",
|
||||
name: "surveillanceControl",
|
||||
component: () =>
|
||||
import(
|
||||
"@/views/backOfficeSystem/BasicManagement/surveillanceControl/index"
|
||||
),
|
||||
meta: {
|
||||
title: "布控监视",
|
||||
icon: "article"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
];
|
||||
@ -441,7 +548,7 @@ const router = createRouter({
|
||||
export function resetRouter() {
|
||||
if (store.getters?.routeReady && store.getters?.userInfo?.permission?.menus) {
|
||||
const menus = store.getters.userInfo.permission.menus;
|
||||
menus.forEach(menu => {
|
||||
menus.forEach((menu) => {
|
||||
router.removeRoute(menu);
|
||||
});
|
||||
}
|
||||
|
Reference in New Issue
Block a user