网上会议
This commit is contained in:
parent
94f20163f0
commit
d027f87351
|
@ -1,4 +1,4 @@
|
|||
import { createRouter,createWebHashHistory } from "vue-router";
|
||||
import { createRouter, createWebHashHistory } from "vue-router";
|
||||
import layout from "@/layout/index"; //layout直接引用 其他使用路由懒加载
|
||||
import store from "@/store";
|
||||
|
||||
|
@ -85,8 +85,7 @@ 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: "管理用户"
|
||||
}
|
||||
|
@ -94,8 +93,7 @@ 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: "分配用户"
|
||||
}
|
||||
|
@ -104,433 +102,441 @@ 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"
|
||||
}
|
||||
},
|
||||
}
|
||||
]
|
||||
},
|
||||
}
|
||||
];
|
||||
|
||||
/**
|
||||
* 公开路由表
|
||||
*/
|
||||
export const publicRoutes = [
|
||||
|
||||
{
|
||||
path: "/login",
|
||||
name:'login',
|
||||
name: "login",
|
||||
component: () => import("@/views/login/index")
|
||||
},
|
||||
{
|
||||
path: "/",
|
||||
name:'home',
|
||||
path: "/home",
|
||||
name: "home",
|
||||
component: () => import("@/views/home/index") //系统登录
|
||||
},
|
||||
{
|
||||
path: "/KeyPopulations",
|
||||
name:'KeyPopulations',
|
||||
name: "KeyPopulations",
|
||||
component: () => import("@/views/KeyPopulations/index") //系统登录
|
||||
},
|
||||
{
|
||||
path: "/editPassword",// 注意:带有路径“/”的记录中的组件“默认”是一个不返回 Promise 的函数
|
||||
path: "/editPassword", // 注意:带有路径“/”的记录中的组件“默认”是一个不返回 Promise 的函数
|
||||
component: layout,
|
||||
redirect: "/IdentityManage",
|
||||
children: [
|
||||
{
|
||||
path: "/FourColorWarning",
|
||||
name: "FourColorWarning",
|
||||
meta: { title: "四色预警管理", icon: "article" },
|
||||
children: [
|
||||
{
|
||||
path: "/IdentityManage",
|
||||
name: "IdentityManage",
|
||||
component: () => import("@/views/backOfficeSystem/fourColorManage/IdentityManage/index"),
|
||||
meta: {
|
||||
title: "身份标签管理",
|
||||
icon: "article"
|
||||
}
|
||||
},
|
||||
{
|
||||
path: "/BehaviorLabels",
|
||||
name: "BehaviorLabels",
|
||||
component: () => import("@/views/backOfficeSystem/fourColorManage/BehaviorLabels/index"),
|
||||
meta: {
|
||||
title: "行为标签管理",
|
||||
icon: "article"
|
||||
}
|
||||
},
|
||||
{
|
||||
path: "/tagManage",
|
||||
name: "tagManage",
|
||||
component: () => import("@/views/backOfficeSystem/fourColorManage/tagManage/index"),
|
||||
meta: {
|
||||
title: "标签组合管理",
|
||||
icon: "article"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
||||
{
|
||||
path: "/FourColorWarning",
|
||||
name: "FourColorWarning",
|
||||
meta: { title: "四色预警管理", icon: "article" },
|
||||
children: [
|
||||
{
|
||||
path: "/IdentityManage",
|
||||
name: "IdentityManage",
|
||||
component: () => import("@/views/backOfficeSystem/fourColorManage/IdentityManage/index"),
|
||||
meta: {
|
||||
title: "身份标签管理",
|
||||
icon: "article"
|
||||
{
|
||||
path: "/IntelligentControl",
|
||||
name: "IntelligentControl",
|
||||
meta: { title: "智能布控", icon: "article" },
|
||||
children: [
|
||||
{
|
||||
path: "/warningControl",
|
||||
name: "warningControl",
|
||||
component: () => import("@/views/backOfficeSystem/IntelligentControl/warningControl/index"),
|
||||
meta: {
|
||||
title: "预警布控",
|
||||
icon: "article"
|
||||
}
|
||||
},
|
||||
{
|
||||
path: "/myControl",
|
||||
name: "myControl",
|
||||
component: () => import("@/views/backOfficeSystem/IntelligentControl/myControl/index"),
|
||||
meta: {
|
||||
title: "我的布控",
|
||||
icon: "article"
|
||||
}
|
||||
},
|
||||
{
|
||||
path: "/ControlApproval",
|
||||
name: "ControlApproval",
|
||||
component: () => import("@/views/backOfficeSystem/IntelligentControl/ControlApproval/index"),
|
||||
meta: {
|
||||
title: "布控审批",
|
||||
icon: "article"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
path: "/BehaviorLabels",
|
||||
name: "BehaviorLabels",
|
||||
component: () => import("@/views/backOfficeSystem/fourColorManage/BehaviorLabels/index"),
|
||||
meta: {
|
||||
title: "行为标签管理",
|
||||
icon: "article"
|
||||
}
|
||||
},
|
||||
{
|
||||
path: "/tagManage",
|
||||
name: "tagManage",
|
||||
component: () => import("@/views/backOfficeSystem/fourColorManage/tagManage/index"),
|
||||
meta: {
|
||||
title: "标签组合管理",
|
||||
icon: "article"
|
||||
}
|
||||
},
|
||||
],
|
||||
},
|
||||
|
||||
{
|
||||
path: "/IntelligentControl",
|
||||
name: "IntelligentControl",
|
||||
meta: { title: "智能布控", icon: "article" },
|
||||
children: [
|
||||
{
|
||||
path: "/warningControl",
|
||||
name: "warningControl",
|
||||
component: () => import("@/views/backOfficeSystem/IntelligentControl/warningControl/index"),
|
||||
meta: {
|
||||
title: "预警布控",
|
||||
icon: "article"
|
||||
}
|
||||
},
|
||||
{
|
||||
path: "/myControl",
|
||||
name: "myControl",
|
||||
component: () => import("@/views/backOfficeSystem/IntelligentControl/myControl/index"),
|
||||
meta: {
|
||||
title: "我的布控",
|
||||
icon: "article"
|
||||
}
|
||||
},
|
||||
{
|
||||
path: "/ControlApproval",
|
||||
name: "ControlApproval",
|
||||
component: () => import("@/views/backOfficeSystem/IntelligentControl/ControlApproval/index"),
|
||||
meta: {
|
||||
title: "布控审批",
|
||||
icon: "article"
|
||||
}
|
||||
},
|
||||
]
|
||||
},
|
||||
{
|
||||
path: "/ResearchJudgment",
|
||||
name: "ResearchJudgment",
|
||||
meta: { title: "线索研判盯办系统", icon: "article" },
|
||||
children: [
|
||||
{
|
||||
path: "/DatAcquisition",
|
||||
name: "DatAcquisition",
|
||||
component: () => import("@/views/backOfficeSystem/ResearchJudgment/DatAcquisition/index"),
|
||||
meta: {
|
||||
title: "情报数据采集",
|
||||
icon: "article"
|
||||
}
|
||||
},
|
||||
{
|
||||
path: "/MoralAnalysis",
|
||||
name: "MoralAnalysis",
|
||||
component: () => import("@/views/backOfficeSystem/ResearchJudgment/MoralAnalysis/index"),
|
||||
meta: {
|
||||
title: "情报语义分析",
|
||||
icon: "article"
|
||||
}
|
||||
},
|
||||
{
|
||||
path: "/IntelligenceManagement",
|
||||
name: "IntelligenceManagement",
|
||||
component: () => import("@/views/backOfficeSystem/ResearchJudgment/IntelligenceManagement/index"),
|
||||
meta: {
|
||||
title: "情报管理",
|
||||
icon: "article"
|
||||
}
|
||||
},
|
||||
{
|
||||
path: "/InformationFlows",
|
||||
name: "InformationFlows",
|
||||
meta: { title: "情报流转", icon: "article" },
|
||||
redirect: "/InformationFlow",
|
||||
children: [
|
||||
{
|
||||
path: "/InformationFlow",
|
||||
name: "InformationFlow",
|
||||
component: () => import("@/views/backOfficeSystem/ResearchJudgment/InformationFlows/InformationFlow/index"),
|
||||
meta: {
|
||||
title: "情报信息流转",
|
||||
icon: "article"
|
||||
]
|
||||
},
|
||||
{
|
||||
path: "/ResearchJudgment",
|
||||
name: "ResearchJudgment",
|
||||
meta: { title: "线索研判盯办系统", icon: "article" },
|
||||
children: [
|
||||
{
|
||||
path: "/DatAcquisition",
|
||||
name: "DatAcquisition",
|
||||
component: () => import("@/views/backOfficeSystem/ResearchJudgment/DatAcquisition/index"),
|
||||
meta: {
|
||||
title: "情报数据采集",
|
||||
icon: "article"
|
||||
}
|
||||
},
|
||||
{
|
||||
path: "/MoralAnalysis",
|
||||
name: "MoralAnalysis",
|
||||
component: () => import("@/views/backOfficeSystem/ResearchJudgment/MoralAnalysis/index"),
|
||||
meta: {
|
||||
title: "情报语义分析",
|
||||
icon: "article"
|
||||
}
|
||||
},
|
||||
{
|
||||
path: "/IntelligenceManagement",
|
||||
name: "IntelligenceManagement",
|
||||
component: () => import("@/views/backOfficeSystem/ResearchJudgment/IntelligenceManagement/index"),
|
||||
meta: {
|
||||
title: "情报管理",
|
||||
icon: "article"
|
||||
}
|
||||
},
|
||||
{
|
||||
path: "/InformationFlows",
|
||||
name: "InformationFlows",
|
||||
meta: { title: "情报流转", icon: "article" },
|
||||
redirect: "/InformationFlow",
|
||||
children: [
|
||||
{
|
||||
path: "/InformationFlow",
|
||||
name: "InformationFlow",
|
||||
component: () =>
|
||||
import("@/views/backOfficeSystem/ResearchJudgment/InformationFlows/InformationFlow/index"),
|
||||
meta: {
|
||||
title: "情报信息流转",
|
||||
icon: "article"
|
||||
}
|
||||
},
|
||||
{
|
||||
path: "/InstructionInformation",
|
||||
name: "InstructionInformation",
|
||||
component: () =>
|
||||
import("@/views/backOfficeSystem/ResearchJudgment/InformationFlows/InstructionInformation/index"),
|
||||
meta: {
|
||||
title: "指令信息",
|
||||
icon: "article"
|
||||
}
|
||||
},
|
||||
{
|
||||
path: "/StatisticalAnalysis",
|
||||
name: "StatisticalAnalysis",
|
||||
component: () =>
|
||||
import("@/views/backOfficeSystem/ResearchJudgment/InformationFlows/StatisticalAnalysis/index"),
|
||||
meta: {
|
||||
title: "情报统计分析",
|
||||
icon: "article"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
path: "/InstructionInformation",
|
||||
name: "InstructionInformation",
|
||||
component: () => import("@/views/backOfficeSystem/ResearchJudgment/InformationFlows/InstructionInformation/index"),
|
||||
meta: {
|
||||
title: "指令信息",
|
||||
icon: "article"
|
||||
}
|
||||
},
|
||||
{
|
||||
path: "/StatisticalAnalysis",
|
||||
name: "StatisticalAnalysis",
|
||||
component: () => import("@/views/backOfficeSystem/ResearchJudgment/InformationFlows/StatisticalAnalysis/index"),
|
||||
meta: {
|
||||
title: "情报统计分析",
|
||||
icon: "article"
|
||||
}
|
||||
},
|
||||
]
|
||||
},
|
||||
{
|
||||
path: "/RecordsOperations",
|
||||
name: "RecordsOperations",
|
||||
component: () => import("@/views/backOfficeSystem/ResearchJudgment/RecordsOperations/index"),
|
||||
meta: {
|
||||
title: "操作记录",
|
||||
icon: "article"
|
||||
]
|
||||
},
|
||||
{
|
||||
path: "/RecordsOperations",
|
||||
name: "RecordsOperations",
|
||||
component: () => import("@/views/backOfficeSystem/ResearchJudgment/RecordsOperations/index"),
|
||||
meta: {
|
||||
title: "操作记录",
|
||||
icon: "article"
|
||||
}
|
||||
}
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
path: "/HumanIntelligence",
|
||||
name: "HumanIntelligence",
|
||||
meta: { title: "人力情报采集管理系统", icon: "article" },
|
||||
children: [
|
||||
{
|
||||
path: "/RlStatisticalAnalysis",
|
||||
name: "RlStatisticalAnalysis",
|
||||
component: () => import("@/views/backOfficeSystem/HumanIntelligence/RlStatisticalAnalysis/index"),
|
||||
meta: {
|
||||
title: "人力情报统计分析",
|
||||
icon: "article"
|
||||
]
|
||||
},
|
||||
{
|
||||
path: "/HumanIntelligence",
|
||||
name: "HumanIntelligence",
|
||||
meta: { title: "人力情报采集管理系统", icon: "article" },
|
||||
children: [
|
||||
{
|
||||
path: "/RlStatisticalAnalysis",
|
||||
name: "RlStatisticalAnalysis",
|
||||
component: () => import("@/views/backOfficeSystem/HumanIntelligence/RlStatisticalAnalysis/index"),
|
||||
meta: {
|
||||
title: "人力情报统计分析",
|
||||
icon: "article"
|
||||
}
|
||||
},
|
||||
{
|
||||
path: "/CollectCrculate",
|
||||
name: "CollectCrculate",
|
||||
component: () => import("@/views/backOfficeSystem/HumanIntelligence/CollectCrculate/index"),
|
||||
meta: {
|
||||
title: "人力情报信息采集流转",
|
||||
icon: "article"
|
||||
}
|
||||
},
|
||||
{
|
||||
path: "/TaskScheduling",
|
||||
name: "TaskScheduling",
|
||||
component: () => import("@/views/backOfficeSystem/HumanIntelligence/TaskScheduling/index"),
|
||||
meta: {
|
||||
title: "人力情报信息搜索任务调度",
|
||||
icon: "article"
|
||||
}
|
||||
},
|
||||
{
|
||||
path: "/ConstructionManagement",
|
||||
name: "ConstructionManagement",
|
||||
component: () => import("@/views/backOfficeSystem/HumanIntelligence/ConstructionManagement/index"),
|
||||
meta: {
|
||||
title: "社会信息人员建设管理",
|
||||
icon: "article"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
path: "/CollectCrculate",
|
||||
name: "CollectCrculate",
|
||||
component: () => import("@/views/backOfficeSystem/HumanIntelligence/CollectCrculate/index"),
|
||||
meta: {
|
||||
title: "人力情报信息采集流转",
|
||||
icon: "article"
|
||||
]
|
||||
},
|
||||
{
|
||||
path: "/ExcavationResearch",
|
||||
name: "ExcavationResearch",
|
||||
meta: { title: "重点人发掘研判", icon: "article" },
|
||||
children: [
|
||||
{
|
||||
path: "/ZdryFjyp",
|
||||
name: "ZdryFjyp",
|
||||
component: () => import("@/views/backOfficeSystem/ExcavationResearch/ZdryFjyp/index"),
|
||||
meta: {
|
||||
title: "重点人员发掘研判",
|
||||
icon: "article"
|
||||
}
|
||||
},
|
||||
{
|
||||
path: "/PreliminaryExcavations",
|
||||
name: "PreliminaryExcavations",
|
||||
component: () => import("@/views/backOfficeSystem/ExcavationResearch/PreliminaryExcavations/index"),
|
||||
meta: {
|
||||
title: "重点人员初步发掘",
|
||||
icon: "article"
|
||||
}
|
||||
},
|
||||
{
|
||||
path: "/LandingAudit",
|
||||
name: "LandingAudit",
|
||||
component: () => import("@/views/backOfficeSystem/ExcavationResearch/LandingAudit/index"),
|
||||
meta: {
|
||||
title: "重点人员落地审核",
|
||||
icon: "article"
|
||||
}
|
||||
},
|
||||
{
|
||||
path: "/WarningModel",
|
||||
name: "WarningModel",
|
||||
component: () => import("@/views/backOfficeSystem/ExcavationResearch/WarningModel/index"),
|
||||
meta: {
|
||||
title: "重点人员预警模型",
|
||||
icon: "article"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
path: "/TaskScheduling",
|
||||
name: "TaskScheduling",
|
||||
component: () => import("@/views/backOfficeSystem/HumanIntelligence/TaskScheduling/index"),
|
||||
meta: {
|
||||
title: "人力情报信息搜索任务调度",
|
||||
icon: "article"
|
||||
}
|
||||
},
|
||||
{
|
||||
path: "/ConstructionManagement",
|
||||
name: "ConstructionManagement",
|
||||
component: () => import("@/views/backOfficeSystem/HumanIntelligence/ConstructionManagement/index"),
|
||||
meta: {
|
||||
title: "社会信息人员建设管理",
|
||||
icon: "article"
|
||||
}
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
path: "/ExcavationResearch",
|
||||
name: "ExcavationResearch",
|
||||
meta: { title: "重点人发掘研判", icon: "article" },
|
||||
children: [
|
||||
{
|
||||
path: "/ZdryFjyp",
|
||||
name: "ZdryFjyp",
|
||||
component: () => import("@/views/backOfficeSystem/ExcavationResearch/ZdryFjyp/index"),
|
||||
meta: {
|
||||
title: "重点人员发掘研判",
|
||||
icon: "article"
|
||||
}
|
||||
},
|
||||
{
|
||||
path: "/PreliminaryExcavations",
|
||||
name: "PreliminaryExcavations",
|
||||
component: () => import("@/views/backOfficeSystem/ExcavationResearch/PreliminaryExcavations/index"),
|
||||
meta: {
|
||||
title: "重点人员初步发掘",
|
||||
icon: "article"
|
||||
}
|
||||
},
|
||||
{
|
||||
path: "/LandingAudit",
|
||||
name: "LandingAudit",
|
||||
component: () => import("@/views/backOfficeSystem/ExcavationResearch/LandingAudit/index"),
|
||||
meta: {
|
||||
title: "重点人员落地审核",
|
||||
icon: "article"
|
||||
}
|
||||
},
|
||||
{
|
||||
path: "/WarningModel",
|
||||
name: "WarningModel",
|
||||
component: () => import("@/views/backOfficeSystem/ExcavationResearch/WarningModel/index"),
|
||||
meta: {
|
||||
title: "重点人员预警模型",
|
||||
icon: "article"
|
||||
}
|
||||
},
|
||||
],
|
||||
},
|
||||
]
|
||||
},
|
||||
|
||||
// )))))))))))))))))))))
|
||||
// )))))))))))))))))))))
|
||||
|
||||
|
||||
{
|
||||
path: "/CivilExplosives",
|
||||
name: "CivilExplosives",
|
||||
meta: { title: "民爆业务", icon: "article" },
|
||||
children: [
|
||||
{
|
||||
path: "/BlastingAccidents",
|
||||
name: "BlastingAccidents",
|
||||
component: () => import("@/views/backOfficeSystem/CivilExplosives/BlastingAccidents/index"),
|
||||
meta: {
|
||||
title: "爆破事故登记信息",
|
||||
icon: "article"
|
||||
{
|
||||
path: "/CivilExplosives",
|
||||
name: "CivilExplosives",
|
||||
meta: { title: "民爆业务", icon: "article" },
|
||||
children: [
|
||||
{
|
||||
path: "/BlastingAccidents",
|
||||
name: "BlastingAccidents",
|
||||
component: () => import("@/views/backOfficeSystem/CivilExplosives/BlastingAccidents/index"),
|
||||
meta: {
|
||||
title: "爆破事故登记信息",
|
||||
icon: "article"
|
||||
}
|
||||
},
|
||||
{
|
||||
path: "/BlastingOperations",
|
||||
name: "BlastingOperations",
|
||||
component: () => import("@/views/backOfficeSystem/CivilExplosives/BlastingOperations/index"),
|
||||
meta: {
|
||||
title: "爆破作业项目信息",
|
||||
icon: "article"
|
||||
}
|
||||
},
|
||||
{
|
||||
path: "/ExplosionAccidents",
|
||||
name: "ExplosionAccidents",
|
||||
component: () => import("@/views/backOfficeSystem/CivilExplosives/ExplosionAccidents/index"),
|
||||
meta: {
|
||||
title: "爆炸事故单位信息",
|
||||
icon: "article"
|
||||
}
|
||||
},
|
||||
{
|
||||
path: "/PersonnelInformation",
|
||||
name: "PersonnelInformation",
|
||||
component: () => import("@/views/backOfficeSystem/CivilExplosives/PersonnelInformation/index"),
|
||||
meta: {
|
||||
title: "爆炸事故人员信息",
|
||||
icon: "article"
|
||||
}
|
||||
},
|
||||
{
|
||||
path: "/ExplosivesRelated",
|
||||
name: "ExplosivesRelated",
|
||||
component: () => import("@/views/backOfficeSystem/CivilExplosives/ExplosivesRelated/index"),
|
||||
meta: {
|
||||
title: "涉爆从业单位",
|
||||
icon: "article"
|
||||
}
|
||||
},
|
||||
{
|
||||
path: "/Illegal",
|
||||
name: "Illegal",
|
||||
component: () => import("@/views/backOfficeSystem/CivilExplosives/Illegal/index"),
|
||||
meta: {
|
||||
title: "涉爆违章项目信息",
|
||||
icon: "article"
|
||||
}
|
||||
},
|
||||
{
|
||||
path: "/KeyPersonnel",
|
||||
name: "KeyPersonnel",
|
||||
component: () => import("@/views/backOfficeSystem/CivilExplosives/KeyPersonnel/index"),
|
||||
meta: {
|
||||
title: "涉爆重点人员",
|
||||
icon: "article"
|
||||
}
|
||||
},
|
||||
{
|
||||
path: "/SuspensionInfo",
|
||||
name: "SuspensionInfo",
|
||||
component: () => import("@/views/backOfficeSystem/CivilExplosives/SuspensionInfo/index"),
|
||||
meta: {
|
||||
title: "停产停业信息",
|
||||
icon: "article"
|
||||
}
|
||||
},
|
||||
{
|
||||
path: "/ViolationRegistration",
|
||||
name: "ViolationRegistration",
|
||||
component: () => import("@/views/backOfficeSystem/CivilExplosives/ViolationRegistration/index"),
|
||||
meta: {
|
||||
title: "违章登记信息",
|
||||
icon: "article"
|
||||
}
|
||||
},
|
||||
{
|
||||
path: "/ViolationPersonnel",
|
||||
name: "ViolationPersonnel",
|
||||
component: () => import("@/views/backOfficeSystem/CivilExplosives/ViolationPersonnel/index"),
|
||||
meta: {
|
||||
title: "违章人员信息",
|
||||
icon: "article"
|
||||
}
|
||||
},
|
||||
{
|
||||
path: "/Warehouse",
|
||||
name: "Warehouse",
|
||||
component: () => import("@/views/backOfficeSystem/CivilExplosives/Warehouse/index"),
|
||||
meta: {
|
||||
title: "库房管理",
|
||||
icon: "article"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
path: "/BlastingOperations",
|
||||
name: "BlastingOperations",
|
||||
component: () => import("@/views/backOfficeSystem/CivilExplosives/BlastingOperations/index"),
|
||||
meta: {
|
||||
title: "爆破作业项目信息",
|
||||
icon: "article"
|
||||
]
|
||||
},
|
||||
{
|
||||
path: "/ThriftTrading",
|
||||
name: "ThriftTrading",
|
||||
meta: { title: "旧货交易", icon: "article" },
|
||||
children: [
|
||||
{
|
||||
path: "/TradeTtems",
|
||||
name: "TradeTtems",
|
||||
component: () => import("@/views/backOfficeSystem/ThriftTrading/TradeTtems/index"),
|
||||
meta: {
|
||||
title: "交易物品信息管理",
|
||||
icon: "article"
|
||||
}
|
||||
},
|
||||
{
|
||||
path: "/TradingVenues",
|
||||
name: "TradingVenues",
|
||||
component: () => import("@/views/backOfficeSystem/ThriftTrading/TradingVenues/index"),
|
||||
meta: {
|
||||
title: "旧货交易业场所管理",
|
||||
icon: "article"
|
||||
}
|
||||
},
|
||||
{
|
||||
path: "/TradingBusiness",
|
||||
name: "TradingBusiness",
|
||||
component: () => import("@/views/backOfficeSystem/ThriftTrading/TradingBusiness/index"),
|
||||
meta: {
|
||||
title: "旧货交易业务信息管理",
|
||||
icon: "article"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
path: "/ExplosionAccidents",
|
||||
name: "ExplosionAccidents",
|
||||
component: () => import("@/views/backOfficeSystem/CivilExplosives/ExplosionAccidents/index"),
|
||||
meta: {
|
||||
title: "爆炸事故单位信息",
|
||||
icon: "article"
|
||||
}
|
||||
},
|
||||
{
|
||||
path: "/PersonnelInformation",
|
||||
name: "PersonnelInformation",
|
||||
component: () => import("@/views/backOfficeSystem/CivilExplosives/PersonnelInformation/index"),
|
||||
meta: {
|
||||
title: "爆炸事故人员信息",
|
||||
icon: "article"
|
||||
}
|
||||
},
|
||||
{
|
||||
path: "/ExplosivesRelated",
|
||||
name: "ExplosivesRelated",
|
||||
component: () => import("@/views/backOfficeSystem/CivilExplosives/ExplosivesRelated/index"),
|
||||
meta: {
|
||||
title: "涉爆从业单位",
|
||||
icon: "article"
|
||||
}
|
||||
},
|
||||
{
|
||||
path: "/Illegal",
|
||||
name: "Illegal",
|
||||
component: () => import("@/views/backOfficeSystem/CivilExplosives/Illegal/index"),
|
||||
meta: {
|
||||
title: "涉爆违章项目信息",
|
||||
icon: "article"
|
||||
}
|
||||
},
|
||||
{
|
||||
path: "/KeyPersonnel",
|
||||
name: "KeyPersonnel",
|
||||
component: () => import("@/views/backOfficeSystem/CivilExplosives/KeyPersonnel/index"),
|
||||
meta: {
|
||||
title: "涉爆重点人员",
|
||||
icon: "article"
|
||||
}
|
||||
},
|
||||
{
|
||||
path: "/SuspensionInfo",
|
||||
name: "SuspensionInfo",
|
||||
component: () => import("@/views/backOfficeSystem/CivilExplosives/SuspensionInfo/index"),
|
||||
meta: {
|
||||
title: "停产停业信息",
|
||||
icon: "article"
|
||||
}
|
||||
},
|
||||
{
|
||||
path: "/ViolationRegistration",
|
||||
name: "ViolationRegistration",
|
||||
component: () => import("@/views/backOfficeSystem/CivilExplosives/ViolationRegistration/index"),
|
||||
meta: {
|
||||
title: "违章登记信息",
|
||||
icon: "article"
|
||||
}
|
||||
},
|
||||
{
|
||||
path: "/ViolationPersonnel",
|
||||
name: "ViolationPersonnel",
|
||||
component: () => import("@/views/backOfficeSystem/CivilExplosives/ViolationPersonnel/index"),
|
||||
meta: {
|
||||
title: "违章人员信息",
|
||||
icon: "article"
|
||||
}
|
||||
},
|
||||
{
|
||||
path: "/Warehouse",
|
||||
name: "Warehouse",
|
||||
component: () => import("@/views/backOfficeSystem/CivilExplosives/Warehouse/index"),
|
||||
meta: {
|
||||
title: "库房管理",
|
||||
icon: "article"
|
||||
}
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
path: "/ThriftTrading",
|
||||
name: "ThriftTrading",
|
||||
meta: { title: "旧货交易", icon: "article" },
|
||||
children: [
|
||||
{
|
||||
path: "/TradeTtems",
|
||||
name: "TradeTtems",
|
||||
component: () => import("@/views/backOfficeSystem/ThriftTrading/TradeTtems/index"),
|
||||
meta: {
|
||||
title: "交易物品信息管理",
|
||||
icon: "article"
|
||||
}
|
||||
},
|
||||
{
|
||||
path: "/TradingVenues",
|
||||
name: "TradingVenues",
|
||||
component: () => import("@/views/backOfficeSystem/ThriftTrading/TradingVenues/index"),
|
||||
meta: {
|
||||
title: "旧货交易业场所管理",
|
||||
icon: "article"
|
||||
}
|
||||
},
|
||||
{
|
||||
path: "/TradingBusiness",
|
||||
name: "TradingBusiness",
|
||||
component: () => import("@/views/backOfficeSystem/ThriftTrading/TradingBusiness/index"),
|
||||
meta: {
|
||||
title: "旧货交易业务信息管理",
|
||||
icon: "article"
|
||||
}
|
||||
},
|
||||
],
|
||||
},
|
||||
]},
|
||||
]
|
||||
},
|
||||
{
|
||||
path: "/",
|
||||
name: "MeetingRoom",
|
||||
component: () => import("@/views/backOfficeSystem/MeetingRoom/index"),
|
||||
meta: {
|
||||
title: "网上会商室",
|
||||
icon: "article"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
];
|
||||
|
||||
|
||||
const router = createRouter({
|
||||
history: createWebHashHistory(),
|
||||
routes: publicRoutes
|
||||
});
|
||||
//初始化路由表
|
||||
export function resetRouter() {
|
||||
if (store.getters ?.routeReady && store.getters ?.userInfo ?.permission ?.menus) {
|
||||
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);
|
||||
});
|
||||
}
|
||||
|
|
326
src/views/backOfficeSystem/MeetingRoom/index.vue
Normal file
326
src/views/backOfficeSystem/MeetingRoom/index.vue
Normal file
|
@ -0,0 +1,326 @@
|
|||
<template>
|
||||
<div>
|
||||
<div class="titleBox">
|
||||
<PageTitle title="网上会议室" />
|
||||
</div>
|
||||
<!-- 搜索 -->
|
||||
<div ref="searchBox">
|
||||
<Search :searchArr="searchConfiger" @submit="onSearch" :key="pageData.keyCount" />
|
||||
</div>
|
||||
<!-- 表格 -->
|
||||
<div class="tabBox">
|
||||
<div class="btns">
|
||||
<el-button type="primary">新增</el-button>
|
||||
<el-button type="danger">新增</el-button>
|
||||
</div>
|
||||
<div class="list noScollLine">
|
||||
<div class="list-item" v-for="(item, index) in pageData.tableData" :key="`tableData${index}`" @onmouseover="">
|
||||
<div class="top">
|
||||
<div class="title ellipsis">{{ item.title }}</div>
|
||||
<div class="info h36 ellipsis2">会商内容:{{ item.hynr }}</div>
|
||||
<div class="info h36 ellipsis2">关联线索:{{ item.lxxs }}</div>
|
||||
<div class="info h36 ellipsis2">涉及人员:{{ item.sjry }}</div>
|
||||
</div>
|
||||
|
||||
<div class="mid">
|
||||
<div class="left">
|
||||
<div class="title ellipsis">参会人员:{{ item.chry }}</div>
|
||||
<div class="desc">
|
||||
<div class="info ellipsis" v-for="(el, i) in item.cqcs" :key="`item${index}`">{{ i + 1 }}.{{ el }}</div>
|
||||
<!-- <div class="info ellipsis">2.应抓捕赵某,王某XXXXXXXXX王某XXXXXXXXXXXXXXXX等人</div> -->
|
||||
</div>
|
||||
</div>
|
||||
<div class="right">
|
||||
<el-button type="primary" size="small">加入会议</el-button>
|
||||
<el-button type="primary" size="small">反馈情况</el-button>
|
||||
<el-button type="primary" size="small">处置下发</el-button>
|
||||
</div>
|
||||
</div>
|
||||
<div class="bottom">
|
||||
<el-link type="primary">评论</el-link>
|
||||
<el-link type="primary">会议回放</el-link>
|
||||
<el-link type="danger">删除</el-link>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<Pages
|
||||
@changeNo="changeNo"
|
||||
@changeSize="changeSize"
|
||||
:tableHeight="pageData.tableHeight"
|
||||
:pageConfiger="{
|
||||
...pageData.pageConfiger,
|
||||
total: pageData.total
|
||||
}"
|
||||
></Pages>
|
||||
</div>
|
||||
<!-- 详情 -->
|
||||
<DetailForm ref="detailDiloag" />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import PageTitle from "@/components/aboutTable/PageTitle.vue";
|
||||
import Pages from "@/components/aboutTable/Pages.vue";
|
||||
import Search from "@/components/aboutTable/Search.vue";
|
||||
// import DetailForm from "./components/detailForm.vue";
|
||||
import { qcckGet, qcckPost, qcckDelete } from "@/api/qcckApi.js";
|
||||
import { reactive, ref, onMounted, getCurrentInstance } from "vue";
|
||||
const { proxy } = getCurrentInstance();
|
||||
const detailDiloag = ref();
|
||||
const searchBox = ref(); //搜索框
|
||||
|
||||
const searchConfiger = ref([
|
||||
{
|
||||
label: "会议主题",
|
||||
prop: "businessNo",
|
||||
placeholder: "请输入会议主题",
|
||||
showType: "input"
|
||||
},
|
||||
{
|
||||
label: "关联线索",
|
||||
prop: "goodsName",
|
||||
placeholder: "请选择关联线索",
|
||||
showType: "select"
|
||||
},
|
||||
{
|
||||
label: "涉及人员",
|
||||
prop: "businessNo",
|
||||
placeholder: "请输入涉及人员",
|
||||
showType: "input"
|
||||
},
|
||||
{
|
||||
label: "会议内容",
|
||||
prop: "businessNo",
|
||||
placeholder: "请输入会议内容",
|
||||
showType: "input"
|
||||
}
|
||||
]);
|
||||
|
||||
const queryFrom = ref({});
|
||||
const pageData = reactive({
|
||||
tableData: [
|
||||
{
|
||||
title: "林芝市XX地区发生的重大案件处理",
|
||||
hynr: "XX王某XXXXXXXXXXXXX王某XXXXXXXXXXXXXXXXXXXXXXX",
|
||||
lxxs: "XX王某XXXXXXXXXXXXX王某XXXXXXXXXXXXXXXXXXXXXXX",
|
||||
sjry: "王某、赵某、.....",
|
||||
chry: "王某、赵某、赵某赵某赵某.....",
|
||||
cqcs: ["应抓捕XXXXXXXXXXcccccccccc", "应抓捕XXXXXXXXXXcccccccccc"]
|
||||
},
|
||||
{
|
||||
title: "林芝市XX地区发生的重大案件处理",
|
||||
hynr: "XX王某XXXXXXXXXXXXX王某XXXXXXXXXXXXXXXXXXXXXXX",
|
||||
lxxs: "XX王某XXXXXXXXXXXXX王某XXXXXXXXXXXXXXXXXXXXXXX",
|
||||
sjry: "王某、赵某、.....",
|
||||
chry: "王某、赵某、赵某赵某赵某.....",
|
||||
cqcs: ["应抓捕XXXXXXXXXXcccccccccc", "应抓捕XXXXXXXXXXcccccccccc"]
|
||||
},
|
||||
{
|
||||
title: "林芝市XX地区发生的重大案件处理",
|
||||
hynr: "XX王某XXXXXXXXXXXXX王某XXXXXXXXXXXXXXXXXXXXXXX",
|
||||
lxxs: "XX王某XXXXXXXXXXXXX王某XXXXXXXXXXXXXXXXXXXXXXX",
|
||||
sjry: "王某、赵某、.....",
|
||||
chry: "王某、赵某、赵某赵某赵某.....",
|
||||
cqcs: ["应抓捕XXXXXXXXXXcccccccccc", "应抓捕XXXXXXXXXXcccccccccc"]
|
||||
},
|
||||
{
|
||||
title: "林芝市XX地区发生的重大案件处理",
|
||||
hynr: "XX王某XXXXXXXXXXXXX王某XXXXXXXXXXXXXXXXXXXXXXX",
|
||||
lxxs: "XX王某XXXXXXXXXXXXX王某XXXXXXXXXXXXXXXXXXXXXXX",
|
||||
sjry: "王某、赵某、.....",
|
||||
chry: "王某、赵某、赵某赵某赵某.....",
|
||||
cqcs: ["应抓捕XXXXXXXXXXcccccccccc", "应抓捕XXXXXXXXXXcccccccccc"]
|
||||
},
|
||||
{
|
||||
title: "林芝市XX地区发生的重大案件处理",
|
||||
hynr: "XX王某XXXXXXXXXXXXX王某XXXXXXXXXXXXXXXXXXXXXXX",
|
||||
lxxs: "XX王某XXXXXXXXXXXXX王某XXXXXXXXXXXXXXXXXXXXXXX",
|
||||
sjry: "王某、赵某、.....",
|
||||
chry: "王某、赵某、赵某赵某赵某.....",
|
||||
cqcs: ["应抓捕XXXXXXXXXXcccccccccc", "应抓捕XXXXXXXXXXcccccccccc"]
|
||||
},
|
||||
{
|
||||
title: "林芝市XX地区发生的重大案件处理",
|
||||
hynr: "XX王某XXXXXXXXXXXXX王某XXXXXXXXXXXXXXXXXXXXXXX",
|
||||
lxxs: "XX王某XXXXXXXXXXXXX王某XXXXXXXXXXXXXXXXXXXXXXX",
|
||||
sjry: "王某、赵某、.....",
|
||||
chry: "王某、赵某、赵某赵某赵某.....",
|
||||
cqcs: ["应抓捕XXXXXXXXXXcccccccccc", "应抓捕XXXXXXXXXXcccccccccc"]
|
||||
},
|
||||
{
|
||||
title: "林芝市XX地区发生的重大案件处理",
|
||||
hynr: "XX王某XXXXXXXXXXXXX王某XXXXXXXXXXXXXXXXXXXXXXX",
|
||||
lxxs: "XX王某XXXXXXXXXXXXX王某XXXXXXXXXXXXXXXXXXXXXXX",
|
||||
sjry: "王某、赵某、.....",
|
||||
chry: "王某、赵某、赵某赵某赵某.....",
|
||||
cqcs: ["应抓捕XXXXXXXXXXcccccccccc", "应抓捕XXXXXXXXXXcccccccccc"]
|
||||
},
|
||||
{
|
||||
title: "林芝市XX地区发生的重大案件处理",
|
||||
hynr: "XX王某XXXXXXXXXXXXX王某XXXXXXXXXXXXXXXXXXXXXXX",
|
||||
lxxs: "XX王某XXXXXXXXXXXXX王某XXXXXXXXXXXXXXXXXXXXXXX",
|
||||
sjry: "王某、赵某、.....",
|
||||
chry: "王某、赵某、赵某赵某赵某.....",
|
||||
cqcs: ["应抓捕XXXXXXXXXXcccccccccc", "应抓捕XXXXXXXXXXcccccccccc"]
|
||||
},
|
||||
{
|
||||
title: "林芝市XX地区发生的重大案件处理",
|
||||
hynr: "XX王某XXXXXXXXXXXXX王某XXXXXXXXXXXXXXXXXXXXXXX",
|
||||
lxxs: "XX王某XXXXXXXXXXXXX王某XXXXXXXXXXXXXXXXXXXXXXX",
|
||||
sjry: "王某、赵某、.....",
|
||||
chry: "王某、赵某、赵某赵某赵某.....",
|
||||
cqcs: ["应抓捕XXXXXXXXXXcccccccccc", "应抓捕XXXXXXXXXXcccccccccc"]
|
||||
},
|
||||
{
|
||||
title: "林芝市XX地区发生的重大案件处理",
|
||||
hynr: "XX王某XXXXXXXXXXXXX王某XXXXXXXXXXXXXXXXXXXXXXX",
|
||||
lxxs: "XX王某XXXXXXXXXXXXX王某XXXXXXXXXXXXXXXXXXXXXXX",
|
||||
sjry: "王某、赵某、.....",
|
||||
chry: "王某、赵某、赵某赵某赵某.....",
|
||||
cqcs: ["应抓捕XXXXXXXXXXcccccccccc", "应抓捕XXXXXXXXXXcccccccccc"]
|
||||
}
|
||||
],
|
||||
keyCount: 0,
|
||||
tableConfiger: {
|
||||
rowHieght: 61,
|
||||
showSelectType: "null",
|
||||
loading: false
|
||||
},
|
||||
total: 0,
|
||||
pageConfiger: {
|
||||
pageSize: 20,
|
||||
pageCurrent: 1
|
||||
},
|
||||
controlsWidth: 120
|
||||
});
|
||||
|
||||
onMounted(() => {
|
||||
getList();
|
||||
tabHeightFn();
|
||||
});
|
||||
|
||||
//选择类型
|
||||
const handleType = val => {
|
||||
pageData.keyCount++;
|
||||
pageData.pageConfiger.pageCurrent = 1;
|
||||
getList();
|
||||
};
|
||||
// 搜索
|
||||
const onSearch = val => {
|
||||
queryFrom.value = { ...val };
|
||||
pageData.pageConfiger.pageCurrent = 1;
|
||||
getList();
|
||||
};
|
||||
|
||||
const changeNo = val => {
|
||||
pageData.pageConfiger.pageNum = val;
|
||||
getList();
|
||||
};
|
||||
const changeSize = val => {
|
||||
pageData.pageConfiger.pageSize = val;
|
||||
getList();
|
||||
};
|
||||
|
||||
// 获取列表
|
||||
const getList = val => {
|
||||
// pageData.tableConfiger.loading = true;
|
||||
let data = { ...pageData.pageConfiger, ...queryFrom.value };
|
||||
// let url = '/mosty-lzcj/tbDwMbkf/queryList';
|
||||
// qcckPost(data,url).then(res=>{
|
||||
// pageData.tableData = res.records || [];
|
||||
// pageData.total = res.total;
|
||||
// pageData.tableConfiger.loading = false;
|
||||
// }).catch(()=>{ pageData.tableConfiger.loading = false; })
|
||||
};
|
||||
|
||||
// 详情
|
||||
const addEdit = (type, row) => {
|
||||
detailDiloag.value.init(type, row);
|
||||
};
|
||||
|
||||
// 表格高度计算
|
||||
const tabHeightFn = () => {
|
||||
pageData.tableHeight = window.innerHeight - searchBox.value.offsetHeight - 250;
|
||||
window.onresize = function () {
|
||||
tabHeightFn();
|
||||
};
|
||||
};
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.el-loading-mask {
|
||||
background: rgba(0, 0, 0, 0.5) !important;
|
||||
}
|
||||
.btns {
|
||||
padding: 10px 20px;
|
||||
}
|
||||
.list {
|
||||
height: calc(100% - 62px);
|
||||
|
||||
gap: 10px;
|
||||
margin: 0 15px;
|
||||
overflow: auto;
|
||||
.list-item {
|
||||
display: inline-block;
|
||||
border: 1px solid #ccc;
|
||||
height: 280px;
|
||||
width: 380px;
|
||||
box-sizing: border-box;
|
||||
border-radius: 5px;
|
||||
padding: 10px;
|
||||
margin: 10px 5px;
|
||||
&:hover {
|
||||
border-color: rgb(124, 195, 253);
|
||||
background-color: rgba(190, 233, 255, 0.582);
|
||||
}
|
||||
&:hover .mid {
|
||||
border-color: rgb(124, 195, 253);
|
||||
}
|
||||
&:hover .desc {
|
||||
background-color: rgb(190, 233, 255);
|
||||
}
|
||||
.title {
|
||||
color: black;
|
||||
font-size: 14px;
|
||||
font-weight: 700;
|
||||
// height: 24px;
|
||||
// line-height: 24px;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
.info {
|
||||
color: #a5a1a1;
|
||||
font-size: 12px;
|
||||
|
||||
line-height: 1.5;
|
||||
}
|
||||
.desc {
|
||||
margin-top: 5px;
|
||||
background-color: rgb(242, 242, 242);
|
||||
width: 260px;
|
||||
height: calc(100% - 25px);
|
||||
padding: 10px;
|
||||
}
|
||||
.mid {
|
||||
border: 1px dashed rgb(124, 195, 253);
|
||||
border-left: 0;
|
||||
border-right: 0;
|
||||
padding: 10px 0;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
|
||||
.right {
|
||||
width: 80px;
|
||||
.el-button + .el-button {
|
||||
margin-left: 0;
|
||||
margin-top: 5px;
|
||||
}
|
||||
}
|
||||
}
|
||||
.bottom {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
Loading…
Reference in New Issue
Block a user