Compare commits
1 Commits
master
...
zhangzhaoy
Author | SHA1 | Date |
---|---|---|
|
768e5f0f8d | 1 year ago |
@ -1,36 +1,19 @@
|
||||
console.log(window.$mapCfg);
|
||||
let mapType = window.$mapCfg.mapType;
|
||||
|
||||
let bmapcfg = {
|
||||
imgext: ".png", //瓦片图的后缀 ------ 根据需要修改,一般是 .png .jpg
|
||||
tiles_dir: "roadmap", //普通瓦片图的地址,为空默认在 offlinemap/tiles/ 目录
|
||||
'imgext': '.png', //瓦片图的后缀 ------ 根据需要修改,一般是 .png .jpg
|
||||
'tiles_dir': 'roadmap', //普通瓦片图的地址,为空默认在 offlinemap/tiles/ 目录
|
||||
//'tiles_path': `http://${window.location.host}`,
|
||||
tiles_path: window.$mapCfg.tiles_path || "",
|
||||
tiles_hybrid: window.$mapCfg.tiles_hybrid || "", //卫星瓦片图的地址,为空默认在 offlinemap/tiles_hybrid/ 目录
|
||||
tiles_self: window.$mapCfg.tiles_self || "", //自定义图层的地址,为空默认在 offlinemap/tiles_self/ 目录
|
||||
'tiles_path': `http://172.18.113.50:8118`,
|
||||
'tiles_hybrid': '', //卫星瓦片图的地址,为空默认在 offlinemap/tiles_hybrid/ 目录
|
||||
'tiles_self': '' //自定义图层的地址,为空默认在 offlinemap/tiles_self/ 目录
|
||||
};
|
||||
|
||||
//////////////////下面的保持不动///////////////////////////////////
|
||||
var scripts = document.getElementsByTagName("script");
|
||||
var JS__FILE__ = scripts[scripts.length - 1].getAttribute("src"); //获得当前js文件路径
|
||||
bmapcfg.home = JS__FILE__.substr(0, JS__FILE__.lastIndexOf("/") + 1); //地图API主目录
|
||||
|
||||
(function () {
|
||||
window.BMap_loadScriptTime = new Date().getTime();
|
||||
|
||||
window.BMap_loadScriptTime = (new Date).getTime();
|
||||
//加载地图API主文件
|
||||
if (mapType === "offline") {
|
||||
document.write(
|
||||
'<script type="text/javascript" src="' +
|
||||
bmapcfg.home +
|
||||
'baiduapi.js"></script>'
|
||||
);
|
||||
}
|
||||
|
||||
if (mapType === "online") {
|
||||
document.write(
|
||||
'<script type="text/javascript" src="https://api.map.baidu.com/api?v=1.0&type=webgl&ak=CSfWwqFqSVkQaqcAAMxKyXg6Moe9UUqA"></script>'
|
||||
);
|
||||
}
|
||||
document.write('<script type="text/javascript" src="' + bmapcfg.home + 'baiduapi.js"></script>')
|
||||
})();
|
||||
///////////////////////////////////////////////////////////////////
|
||||
|
@ -1,24 +0,0 @@
|
||||
window.$mapCfg = {
|
||||
mapType: "online", //在线; offline:离线
|
||||
lgt: "", //经度
|
||||
lat: "", //纬度
|
||||
center: [121.619992, 30.025703],
|
||||
zoom: 12,
|
||||
minZoom: 12,
|
||||
maxZoom: 13,
|
||||
tiles_path: "",
|
||||
tiles_hybrid: "", //卫星瓦片图的地址,为空默认在 offlinemap/tiles_hybrid/ 目录
|
||||
tiles_self: "", //自定义图层的地址,为空默认在 offlinemap/tiles_self/ 目录
|
||||
};
|
||||
|
||||
window.$SYSTEMCONFIG = {
|
||||
SYS_NAME: "镇海平安企业(园区)", //"镇海平安企业(园区)", //系统名称
|
||||
};
|
||||
window.$TOKEN = {
|
||||
SYS_TOKENS: "Bearer eyJhbGciOiJIUzUxMiJ9.eyJsb2dpbl91c2VyX2tleSI6ImE2ZDdkNTg5LTkxN2MtNDlkMS1iODhjLTMxN2E3Zjc4NzcwMyJ9.tEZrwiMSSNSkKVaP2TlOoQtvqgpV-0Vstqy8b9RqQOgSavblX2zRn_8a_6EZsLOtiRTaURvnlJ4HwPRotENhHQ", //"镇海平安企业(园区)", //系统名称
|
||||
};
|
||||
|
||||
window.$SERVICE = {
|
||||
BASEURL:"http://121.41.91.94:8080/zhapi"
|
||||
//BASEURL: "http://1.94.45.26:10006/zhapi", //后端服务地址
|
||||
};
|
@ -1,71 +0,0 @@
|
||||
import request from "@/utils/request";
|
||||
//企业风险项趋势分析图
|
||||
export function enterpriseComprehensiveRisk() {
|
||||
return request({
|
||||
url: "/AnomalyChart/EnterpriseComprehensiveRisk",
|
||||
method: "post",
|
||||
});
|
||||
}
|
||||
//流口人员管理异常
|
||||
export function abnormalFloatingPopulation() {
|
||||
return request({
|
||||
url: "/AnomalyChart/AbnormalFloatingPopulation",
|
||||
method: "post",
|
||||
});
|
||||
}
|
||||
//人员背景审核异常分析
|
||||
export function personnelBackground() {
|
||||
return request({
|
||||
url: "/AnomalyChart/PersonnelBackground",
|
||||
method: "post",
|
||||
});
|
||||
}
|
||||
//重点岗位资质核查异常分析
|
||||
export function keyPosition() {
|
||||
return request({
|
||||
url: "/AnomalyChart/keyPosition",
|
||||
method: "post",
|
||||
});
|
||||
}
|
||||
//人员涉警(案)情况异常分析
|
||||
export function policeInvolvement() {
|
||||
return request({
|
||||
url: "/AnomalyChart/PoliceInvolvement",
|
||||
method: "post",
|
||||
});
|
||||
}
|
||||
//装卸量差异分析
|
||||
export function zXDifference() {
|
||||
return request({
|
||||
url: "/AnomalyChart/ZXDifference",
|
||||
method: "post",
|
||||
});
|
||||
}
|
||||
//运输车辆背景异常分析
|
||||
export function transportVehicleBj() {
|
||||
return request({
|
||||
url: "/AnomalyChart/TransportVehicleBj",
|
||||
method: "post",
|
||||
});
|
||||
}
|
||||
//运输车辆异常预警
|
||||
export function transportVehicleAnomaly() {
|
||||
return request({
|
||||
url: "/AnomalyChart/TransportVehicleAnomaly",
|
||||
method: "post",
|
||||
});
|
||||
}
|
||||
//驾驶员押运员资质异常分析
|
||||
export function transportVehicle() {
|
||||
return request({
|
||||
url: "/AnomalyChart/TransportVehicle",
|
||||
method: "post",
|
||||
});
|
||||
}
|
||||
//单位检查情况异常分析
|
||||
export function unitInspection() {
|
||||
return request({
|
||||
url: "/AnomalyChart/UnitInspection",
|
||||
method: "post",
|
||||
});
|
||||
}
|
@ -1,43 +0,0 @@
|
||||
import request from "@/utils/request";
|
||||
//风险监测项评分排行
|
||||
export function riskDetection() {
|
||||
return request({
|
||||
url: "/tbCompanyRiskStatistics/RiskDetection",
|
||||
method: "post",
|
||||
});
|
||||
}
|
||||
//风险标签排行
|
||||
export function riskLabelRanking() {
|
||||
return request({
|
||||
url: "/tbCompanyRiskStatistics/RiskLabelRanking",
|
||||
method: "post",
|
||||
});
|
||||
}
|
||||
//频繁变化风险监测信息近一年变化趋势图
|
||||
export function frequentChangeRisk() {
|
||||
return request({
|
||||
url: "/tbCompanyRiskStatistics/FrequentChangeRisk",
|
||||
method: "post",
|
||||
});
|
||||
}
|
||||
//风险总量分析变化趋势图
|
||||
export function aggregateRiskAnalysis() {
|
||||
return request({
|
||||
url: "/tbCompanyRiskStatistics/AggregateRiskAnalysis",
|
||||
method: "post",
|
||||
});
|
||||
}
|
||||
//异常风险项得分占比
|
||||
export function riskItemScore() {
|
||||
return request({
|
||||
url: "/tbCompanyRiskStatistics/RiskItemScore",
|
||||
method: "post",
|
||||
});
|
||||
}
|
||||
//异常风险得分对比
|
||||
export function abnormalRiskScore() {
|
||||
return request({
|
||||
url: "/tbCompanyRiskStatistics/AbnormalRiskScore",
|
||||
method: "post",
|
||||
});
|
||||
}
|
@ -1,9 +0,0 @@
|
||||
import request from "@/utils/request";
|
||||
//专题评估报告详情查询接口
|
||||
export function queryListDetails(params) {
|
||||
return request({
|
||||
url: "/ThematicEvaluationController/QueryListDetails",
|
||||
method: "post",
|
||||
params,
|
||||
});
|
||||
}
|
@ -1,43 +0,0 @@
|
||||
import request from "@/utils/request";
|
||||
//企业综合风险雷达图
|
||||
export function enterpriseComprehensiveRisk() {
|
||||
return request({
|
||||
url: "/IntegratedRisk/RadarMap",
|
||||
method: "post",
|
||||
});
|
||||
}
|
||||
//企业综合风险趋势图
|
||||
export function tendencyChart() {
|
||||
return request({
|
||||
url: "/IntegratedRisk/TendencyChart",
|
||||
method: "post",
|
||||
});
|
||||
}
|
||||
//高风险企业增长趋势分析
|
||||
export function ventureBusiness() {
|
||||
return request({
|
||||
url: "/IntegratedRisk/VentureBusiness",
|
||||
method: "post",
|
||||
});
|
||||
}
|
||||
//全区企业风险预警总量
|
||||
export function riskEarlyWarning() {
|
||||
return request({
|
||||
url: "/IntegratedRisk/RiskEarlyWarning",
|
||||
method: "post",
|
||||
});
|
||||
}
|
||||
//全区企业风险标签数量变化趋势
|
||||
export function variationTrend() {
|
||||
return request({
|
||||
url: "/IntegratedRisk/VariationTrend",
|
||||
method: "post",
|
||||
});
|
||||
}
|
||||
//全区企业风险标签增长趋势
|
||||
export function growthTrend() {
|
||||
return request({
|
||||
url: "/IntegratedRisk/GrowthTrend",
|
||||
method: "post",
|
||||
});
|
||||
}
|
@ -1,65 +0,0 @@
|
||||
import request from "@/utils/request";
|
||||
//研判应用列表首次出现
|
||||
export function ResearchAndApplicationList(params) {
|
||||
return request({
|
||||
url: "/tbFactorAnomaly/ResearchAndApplicationList",
|
||||
method: "post",
|
||||
params,
|
||||
});
|
||||
}
|
||||
//研判应用列表频繁出现出现
|
||||
export function HighFrequency(params) {
|
||||
return request({
|
||||
url: "/tbFactorAnomaly/HighFrequency",
|
||||
method: "post",
|
||||
params,
|
||||
});
|
||||
}
|
||||
//统计分析-要素数量统计
|
||||
export function StatisticAnalysisCount(params) {
|
||||
return request({
|
||||
url: "/tbFactorAnomaly/StatisticAnalysisCount",
|
||||
method: "post",
|
||||
params,
|
||||
});
|
||||
}
|
||||
//统计分析-异事件分布
|
||||
export function EventDistribution(params) {
|
||||
return request({
|
||||
url: "/tbFactorAnomaly/EventDistribution",
|
||||
method: "post",
|
||||
params,
|
||||
});
|
||||
}
|
||||
//统计分析-风险处置情况
|
||||
export function RiskDisposition(params) {
|
||||
return request({
|
||||
url: "/tbFactorAnomaly/RiskDisposition",
|
||||
method: "post",
|
||||
params,
|
||||
});
|
||||
}
|
||||
//统计分析-违法行为统计--时间
|
||||
export function IllegalActTime(params) {
|
||||
return request({
|
||||
url: "/tbFactorAnomaly/IllegalActTime",
|
||||
method: "post",
|
||||
params,
|
||||
});
|
||||
}
|
||||
//统计分析-违法行为统计--类型
|
||||
export function IllegalActType(params) {
|
||||
return request({
|
||||
url: "/tbFactorAnomaly/IllegalActType",
|
||||
method: "post",
|
||||
params,
|
||||
});
|
||||
}
|
||||
//统计分析-违法行为统计--地点
|
||||
export function IllegalActArea(params) {
|
||||
return request({
|
||||
url: "/tbFactorAnomaly/IllegalActArea",
|
||||
method: "post",
|
||||
params,
|
||||
});
|
||||
}
|
@ -1,17 +0,0 @@
|
||||
import request from "@/utils/request";
|
||||
//高发问题区域展示
|
||||
export function highincidenceproblems(params) {
|
||||
return request({
|
||||
url: "/synergism/highincidenceproblems",
|
||||
method: "post",
|
||||
params,
|
||||
});
|
||||
}
|
||||
//重点问题区域展示
|
||||
export function importincidenceproblems(params) {
|
||||
return request({
|
||||
url: "/synergism/importincidenceproblems",
|
||||
method: "post",
|
||||
params,
|
||||
});
|
||||
}
|
@ -1,65 +0,0 @@
|
||||
import request from "@/utils/request";
|
||||
//问题整改企业数列表详情
|
||||
export function RectificationOfAProblemListDetails(params) {
|
||||
return request({
|
||||
url: "/tbRectificationOfAProblem/RectificationOfAProblemListDetails",
|
||||
method: "post",
|
||||
params,
|
||||
});
|
||||
}
|
||||
//问题整改企业数列表
|
||||
export function RectificationOfAProblemList(params) {
|
||||
return request({
|
||||
url: "/tbRectificationOfAProblem/RectificationOfAProblemList",
|
||||
method: "post",
|
||||
params,
|
||||
});
|
||||
}
|
||||
//问题整改概览
|
||||
export function OverviewList(params) {
|
||||
return request({
|
||||
url: "/tbRectificationOfAProblem/OverviewList",
|
||||
method: "post",
|
||||
params,
|
||||
});
|
||||
}
|
||||
//各区域整改企业数量
|
||||
export function CompanySumList(params) {
|
||||
return request({
|
||||
url: "/tbRectificationOfAProblem/CompanySumList",
|
||||
method: "post",
|
||||
params,
|
||||
});
|
||||
}
|
||||
//企业整改概况
|
||||
export function RectificationOverview(params) {
|
||||
return request({
|
||||
url: "/tbRectificationOfAProblem/RectificationOverview",
|
||||
method: "post",
|
||||
params,
|
||||
});
|
||||
}
|
||||
//整改企业数量
|
||||
export function CompanySum(params) {
|
||||
return request({
|
||||
url: "/tbRectificationOfAProblem/CompanySum",
|
||||
method: "post",
|
||||
params,
|
||||
});
|
||||
}
|
||||
//企业详情风险整改信息
|
||||
export function RectificationInformation(params) {
|
||||
return request({
|
||||
url: "/tbRectificationOfAProblem/RectificationInformation",
|
||||
method: "post",
|
||||
params,
|
||||
});
|
||||
}
|
||||
//企业详情分数类型
|
||||
export function CompanyDetails(params) {
|
||||
return request({
|
||||
url: "/tbRectificationOfAProblem/CompanyDetails",
|
||||
method: "post",
|
||||
params,
|
||||
});
|
||||
}
|
@ -1,8 +0,0 @@
|
||||
import request from "@/utils/request";
|
||||
//高发问题区域展示
|
||||
export function highincidenceproblems() {
|
||||
return request({
|
||||
url: "/synergism/highincidenceproblems",
|
||||
method: "post",
|
||||
});
|
||||
}
|
@ -1,103 +0,0 @@
|
||||
import request from "@/utils/request";
|
||||
//整改状态占比
|
||||
export function rectificationstatus(params) {
|
||||
return request({
|
||||
url: "/synergism/rectificationstatus",
|
||||
method: "post",
|
||||
params,
|
||||
});
|
||||
}
|
||||
//企业状态占比
|
||||
export function enterprisestatus() {
|
||||
return request({
|
||||
url: "/synergism/enterprisestatus",
|
||||
method: "get",
|
||||
});
|
||||
}
|
||||
//各类型企业监管占比
|
||||
export function corporategovernance() {
|
||||
return request({
|
||||
url: "/synergism/corporategovernance",
|
||||
method: "get",
|
||||
});
|
||||
}
|
||||
//街道监管企业占比
|
||||
export function streetsupervision() {
|
||||
return request({
|
||||
url: "/synergism/streetsupervision",
|
||||
method: "get",
|
||||
});
|
||||
}
|
||||
//整改趋势
|
||||
export function rectifythetrend() {
|
||||
return request({
|
||||
url: "/synergism/rectifythetrend",
|
||||
method: "get",
|
||||
});
|
||||
}
|
||||
//高频扣分项
|
||||
export function frequencydeductpoints() {
|
||||
return request({
|
||||
url: "/synergism/frequencydeductpoints",
|
||||
method: "get",
|
||||
});
|
||||
}
|
||||
//高频要素异常项
|
||||
export function frequencyerrorpoints() {
|
||||
return request({
|
||||
url: "/synergism/frequencyerrorpoints",
|
||||
method: "get",
|
||||
});
|
||||
}
|
||||
//连续纳入监管企业
|
||||
export function coiledenterprisetypes() {
|
||||
return request({
|
||||
url: "/synergism/coiledenterprisetypes",
|
||||
method: "get",
|
||||
});
|
||||
}
|
||||
//连续2次纳入监管企业类型
|
||||
export function coiledtwoenterprisetypes() {
|
||||
return request({
|
||||
url: "/synergism/coiledtwoenterprisetypes",
|
||||
method: "get",
|
||||
});
|
||||
}
|
||||
//连续两次未整改企业
|
||||
export function coiledtwonotenterprise() {
|
||||
return request({
|
||||
url: "/synergism/coiledtwonotenterprise",
|
||||
method: "get",
|
||||
});
|
||||
}
|
||||
//企业风险总数
|
||||
export function totalenterpriserisk() {
|
||||
return request({
|
||||
url: "/synergism/totalenterpriserisk",
|
||||
method: "get",
|
||||
});
|
||||
}
|
||||
//统计企业类型与所属街道
|
||||
export function typeanstreetcount() {
|
||||
return request({
|
||||
url: "/synergism/typeanstreetcount",
|
||||
method: "get",
|
||||
});
|
||||
}
|
||||
//统计企业类型与所属街道
|
||||
export function listingsupervision(params) {
|
||||
return request({
|
||||
url: "/synergism/listingsupervision",
|
||||
method: "post",
|
||||
params,
|
||||
});
|
||||
}
|
||||
|
||||
// 已办任务查询
|
||||
export function testFlow(data) {
|
||||
return request({
|
||||
url: "/workflow/external/flowViewer",
|
||||
method: "post",
|
||||
data,
|
||||
});
|
||||
}
|
@ -1,161 +0,0 @@
|
||||
import request from "@/utils/request";
|
||||
//提醒配置管理-提醒信息推送规则设置列表
|
||||
export function PushSettingList(params) {
|
||||
return request({
|
||||
url: "/tbRulesSetting/PushSettingList",
|
||||
method: "post",
|
||||
params,
|
||||
});
|
||||
}
|
||||
//提醒配置管理-推送规则设置
|
||||
export function UpdatePushSetting(params) {
|
||||
return request({
|
||||
url: "/tbRulesSetting/UpdatePushSetting",
|
||||
method: "post",
|
||||
params,
|
||||
});
|
||||
}
|
||||
//提醒信息模版管理-查询
|
||||
export function SMSTemplateList(params) {
|
||||
return request({
|
||||
url: "/tbRulesSetting/SMSTemplateList",
|
||||
method: "post",
|
||||
params,
|
||||
});
|
||||
}
|
||||
//提醒信息模版管理-添加-修改
|
||||
export function SMSTemplateInsertOrUpdate(params) {
|
||||
return request({
|
||||
url: "/tbRulesSetting/SMSTemplateInsertOrUpdate",
|
||||
method: "post",
|
||||
params,
|
||||
});
|
||||
}
|
||||
//提醒信息模版管理-删除
|
||||
export function SMSTemplateRemove(params) {
|
||||
return request({
|
||||
url: "/tbRulesSetting/SMSTemplateRemove",
|
||||
method: "post",
|
||||
params,
|
||||
});
|
||||
}
|
||||
//钉语音信息管理-查询
|
||||
export function VoiceMessageList(params) {
|
||||
return request({
|
||||
url: "/tbRulesSetting/VoiceMessageList",
|
||||
method: "post",
|
||||
params,
|
||||
});
|
||||
}
|
||||
//钉语音信息管理-添加-修改
|
||||
export function VoiceMessageInsertOrUpdate(params) {
|
||||
return request({
|
||||
url: "/tbRulesSetting/VoiceMessageInsertOrUpdate",
|
||||
method: "post",
|
||||
params,
|
||||
});
|
||||
}
|
||||
//钉语音信息管理-删除
|
||||
export function VoiceMessageRemove(params) {
|
||||
return request({
|
||||
url: "/tbRulesSetting/VoiceMessageRemove",
|
||||
method: "post",
|
||||
params,
|
||||
});
|
||||
}
|
||||
//处置要求管理-查询,处置方式管理-查询
|
||||
export function DispositionList(params) {
|
||||
return request({
|
||||
url: "/tbRulesSetting/DispositionList",
|
||||
method: "post",
|
||||
params,
|
||||
});
|
||||
}
|
||||
//处置要求管理-处置配置,处置方式管理-添加模板
|
||||
export function DispositionUpdate(params) {
|
||||
return request({
|
||||
url: "/tbRulesSetting/DispositionUpdate",
|
||||
method: "post",
|
||||
params,
|
||||
});
|
||||
}
|
||||
//处置方式管理-任务单查询
|
||||
export function TaskTemplateList(params) {
|
||||
return request({
|
||||
url: "/tbRulesSetting/TaskTemplateList",
|
||||
method: "post",
|
||||
params,
|
||||
});
|
||||
}
|
||||
//处置方式管理-删除
|
||||
export function DispositionRemove(data) {
|
||||
return request({
|
||||
url: "/tbRulesSetting/DispositionRemove",
|
||||
method: "post",
|
||||
data,
|
||||
});
|
||||
}
|
||||
//处置方式管理-任务单新增
|
||||
export function TaskTemplateInsert(params) {
|
||||
return request({
|
||||
url: "/tbRulesSetting/TaskTemplateInsert",
|
||||
method: "post",
|
||||
params,
|
||||
});
|
||||
}
|
||||
//处置方式管理-行政处罚单查询
|
||||
export function PunishTemplateList(params) {
|
||||
return request({
|
||||
url: "/tbRulesSetting/PunishTemplateList",
|
||||
method: "post",
|
||||
params,
|
||||
});
|
||||
}
|
||||
//处置方式管理-行政处罚单添加
|
||||
export function PunishTemplateInsert(params) {
|
||||
return request({
|
||||
url: "/tbRulesSetting/PunishTemplateInsert",
|
||||
method: "post",
|
||||
params,
|
||||
});
|
||||
}
|
||||
//紧急管理-查询
|
||||
export function UrgencyDegreeList(params) {
|
||||
return request({
|
||||
url: "/tbRulesSetting/UrgencyDegreeList",
|
||||
method: "post",
|
||||
params,
|
||||
});
|
||||
}
|
||||
//紧急管理-添加修改
|
||||
export function UrgencyDegreeInsert(data) {
|
||||
return request({
|
||||
url: "/tbRulesSetting/UrgencyDegreeInsert",
|
||||
method: "post",
|
||||
data,
|
||||
});
|
||||
}
|
||||
//查询人
|
||||
export function personnelList(params) {
|
||||
return request({
|
||||
url: "/tbRulesSetting/personnelList",
|
||||
method: "post",
|
||||
params,
|
||||
});
|
||||
}
|
||||
//任务单-删除
|
||||
export function TaskTemplateRemove(params) {
|
||||
return request({
|
||||
url: "/tbRulesSetting/TaskTemplateRemove",
|
||||
method: "get",
|
||||
params,
|
||||
});
|
||||
}
|
||||
//行政处罚-删除
|
||||
export function PunishTemplateRemove(params) {
|
||||
return request({
|
||||
url: "/tbRulesSetting/PunishTemplateRemove",
|
||||
method: "post",
|
||||
params,
|
||||
});
|
||||
}
|
@ -1,57 +0,0 @@
|
||||
import request from "@/utils/request";
|
||||
//人防,物防,技防
|
||||
export function alldefense() {
|
||||
return request({
|
||||
url: "/special/defenses/alldefense",
|
||||
method: "post",
|
||||
});
|
||||
}
|
||||
//反恐目标单位检查数据
|
||||
export function antiterrorism() {
|
||||
return request({
|
||||
url: "/special/defenses/antiterrorism",
|
||||
method: "get",
|
||||
});
|
||||
}
|
||||
//防攻击列表
|
||||
export function defenselist() {
|
||||
return request({
|
||||
url: "/special/defenses/defenselist",
|
||||
method: "post",
|
||||
});
|
||||
}
|
||||
//应急预案制定制定异常分析
|
||||
export function emergency() {
|
||||
return request({
|
||||
url: "/special/defenses/emergency",
|
||||
method: "get",
|
||||
});
|
||||
}
|
||||
//企业隐患分析
|
||||
export function hiddentrouble() {
|
||||
return request({
|
||||
url: "/special/defenses/hiddentrouble",
|
||||
method: "get",
|
||||
});
|
||||
}
|
||||
//重点人员出入特定区域次数排行
|
||||
export function inoutranking() {
|
||||
return request({
|
||||
url: "/special/defenses/inoutranking",
|
||||
method: "get",
|
||||
});
|
||||
}
|
||||
//重点人员分类排行
|
||||
export function ranking() {
|
||||
return request({
|
||||
url: "/special/defenses/ranking",
|
||||
method: "get",
|
||||
});
|
||||
}
|
||||
//防攻击头部
|
||||
export function defensenums() {
|
||||
return request({
|
||||
url: "/special/defenses/defensenums",
|
||||
method: "get",
|
||||
});
|
||||
}
|
@ -1,32 +0,0 @@
|
||||
import request from "@/utils/request";
|
||||
//车辆详情
|
||||
export function vehicledetail(params) {
|
||||
return request({
|
||||
url: "/special/vehicle/vehicledetail",
|
||||
method: "post",
|
||||
params,
|
||||
});
|
||||
}
|
||||
//车辆的违规信息统计
|
||||
export function violationdetail(params) {
|
||||
return request({
|
||||
url: "/special/vehicle/violationdetail",
|
||||
method: "post",
|
||||
params,
|
||||
});
|
||||
}
|
||||
//车辆的违规信息统计
|
||||
export function violations() {
|
||||
return request({
|
||||
url: "/special/vehicle/violations",
|
||||
method: "post",
|
||||
});
|
||||
}
|
||||
//获取统计数
|
||||
export function nums(params) {
|
||||
return request({
|
||||
url: "/special/vehicle/nums",
|
||||
method: "get",
|
||||
params,
|
||||
});
|
||||
}
|
@ -1,50 +0,0 @@
|
||||
import request from "@/utils/request";
|
||||
//消防事故列表
|
||||
export function accident() {
|
||||
return request({
|
||||
url: "/special/firefighting/accident",
|
||||
method: "post",
|
||||
});
|
||||
}
|
||||
//消防事件地区排名
|
||||
export function areacount() {
|
||||
return request({
|
||||
url: "/special/firefighting/areacount",
|
||||
method: "get",
|
||||
});
|
||||
}
|
||||
//消防设施数据
|
||||
export function facility() {
|
||||
return request({
|
||||
url: "/special/firefighting/facility",
|
||||
method: "post",
|
||||
});
|
||||
}
|
||||
//消防制度执行
|
||||
export function firefightinggo() {
|
||||
return request({
|
||||
url: "/special/firefighting/firefightinggo",
|
||||
method: "get",
|
||||
});
|
||||
}
|
||||
//企业台账
|
||||
export function ledger() {
|
||||
return request({
|
||||
url: "/special/firefighting/ledger",
|
||||
method: "post",
|
||||
});
|
||||
}
|
||||
//台账异常
|
||||
export function noledger() {
|
||||
return request({
|
||||
url: "/special/firefighting/noledger",
|
||||
method: "post",
|
||||
});
|
||||
}
|
||||
//消防事件单位排名
|
||||
export function relatedcompanycount() {
|
||||
return request({
|
||||
url: "/special/firefighting/relatedcompanycount",
|
||||
method: "get",
|
||||
});
|
||||
}
|
@ -1,86 +0,0 @@
|
||||
import request from "@/utils/request";
|
||||
//异常信息
|
||||
export function exceptioninfo() {
|
||||
return request({
|
||||
url: "/special/peace/exceptioninfo",
|
||||
method: "post",
|
||||
});
|
||||
}
|
||||
//重要岗位详情
|
||||
export function postdetail() {
|
||||
return request({
|
||||
url: "/special/peace/postdetail",
|
||||
method: "post",
|
||||
});
|
||||
}
|
||||
//案件信息
|
||||
export function caseinfo(params) {
|
||||
return request({
|
||||
url: "/special/peace/caseinfo",
|
||||
method: "post",
|
||||
params,
|
||||
});
|
||||
}
|
||||
//矛盾纠纷
|
||||
export function contradiction(params) {
|
||||
return request({
|
||||
url: "/special/peace/contradiction",
|
||||
method: "post",
|
||||
params,
|
||||
});
|
||||
}
|
||||
//劳资纠纷
|
||||
export function labour(params) {
|
||||
return request({
|
||||
url: "/special/peace/labour",
|
||||
method: "post",
|
||||
params,
|
||||
});
|
||||
}
|
||||
//内部治安列表
|
||||
export function peacelist() {
|
||||
return request({
|
||||
url: "/special/peace/peacelist",
|
||||
method: "post",
|
||||
});
|
||||
}
|
||||
//原材料被盗
|
||||
export function steal(params) {
|
||||
return request({
|
||||
url: "/special/peace/steal",
|
||||
method: "post",
|
||||
params,
|
||||
});
|
||||
}
|
||||
//企业三防以及特种设备数据
|
||||
export function vkey(params) {
|
||||
return request({
|
||||
url: "/special/peace/visit/key",
|
||||
method: "post",
|
||||
params,
|
||||
});
|
||||
}
|
||||
//内部治安统计
|
||||
export function peacenums(params) {
|
||||
return request({
|
||||
url: "/special/peace/peacenums",
|
||||
method: "get",
|
||||
params,
|
||||
});
|
||||
}
|
||||
//部门检查及系统研判异常分析
|
||||
export function statistics(params) {
|
||||
return request({
|
||||
url: "/special/peace/statistics",
|
||||
method: "get",
|
||||
params,
|
||||
});
|
||||
}
|
||||
//数据统计
|
||||
export function statisticsOne(params) {
|
||||
return request({
|
||||
url: "/special/peace/statistics1",
|
||||
method: "get",
|
||||
params,
|
||||
});
|
||||
}
|
@ -1,106 +0,0 @@
|
||||
import request from "@/utils/request";
|
||||
//车辆的违规信息统计
|
||||
export function vehicleDetail() {
|
||||
return request({
|
||||
url: "/special/vehicleDetail",
|
||||
method: "post",
|
||||
});
|
||||
}
|
||||
//网络安全评估
|
||||
export function cybersecurityrisk() {
|
||||
return request({
|
||||
url: "/special/cybersecurityrisk",
|
||||
method: "get",
|
||||
});
|
||||
}
|
||||
//危险化学品
|
||||
export function dangerouscloutes() {
|
||||
return request({
|
||||
url: "/special/dangerouscloutes",
|
||||
method: "get",
|
||||
});
|
||||
}
|
||||
//车辆违规数
|
||||
export function dangerousnum() {
|
||||
return request({
|
||||
url: "/special/dangerousnum",
|
||||
method: "get",
|
||||
});
|
||||
}
|
||||
//运输安全
|
||||
export function dangerousrun() {
|
||||
return request({
|
||||
url: "/special/dangerousrun",
|
||||
method: "get",
|
||||
});
|
||||
}
|
||||
//防攻击管理
|
||||
export function defenserisk() {
|
||||
return request({
|
||||
url: "/special/defenserisk",
|
||||
method: "get",
|
||||
});
|
||||
}
|
||||
//消防事件发生
|
||||
export function firefighting() {
|
||||
return request({
|
||||
url: "/special/firefighting",
|
||||
method: "get",
|
||||
});
|
||||
}
|
||||
//消防制度执行
|
||||
export function firefightinggo() {
|
||||
return request({
|
||||
url: "/special/firefightinggo",
|
||||
method: "get",
|
||||
});
|
||||
}
|
||||
//消防设施数据
|
||||
export function firefightinggoods() {
|
||||
return request({
|
||||
url: "/special/firefightinggoods",
|
||||
method: "get",
|
||||
});
|
||||
}
|
||||
//民用枪支
|
||||
export function gun() {
|
||||
return request({
|
||||
url: "/special/gun",
|
||||
method: "get",
|
||||
});
|
||||
}
|
||||
//企业台账
|
||||
export function ledger() {
|
||||
return request({
|
||||
url: "/special/ledger",
|
||||
method: "get",
|
||||
});
|
||||
}
|
||||
//单位内部管理
|
||||
export function peacemanage() {
|
||||
return request({
|
||||
url: "/special/peacemanage",
|
||||
method: "get",
|
||||
});
|
||||
}
|
||||
//人员安全风险评估
|
||||
export function personnelrisk() {
|
||||
return request({
|
||||
url: "/special/personnelrisk",
|
||||
method: "get",
|
||||
});
|
||||
}
|
||||
//放射源物品
|
||||
export function radiationmanage() {
|
||||
return request({
|
||||
url: "/special/radiationmanage",
|
||||
method: "get",
|
||||
});
|
||||
}
|
||||
//道路安全管理
|
||||
export function roadmanage() {
|
||||
return request({
|
||||
url: "/special/roadmanage",
|
||||
method: "get",
|
||||
});
|
||||
}
|
@ -1,65 +0,0 @@
|
||||
import request from "@/utils/request";
|
||||
//危险化学品占比统计
|
||||
export function chemicals() {
|
||||
return request({
|
||||
url: "/special/listeditem/chemicals",
|
||||
method: "get",
|
||||
});
|
||||
}
|
||||
//列管物品异常列表
|
||||
export function facility() {
|
||||
return request({
|
||||
url: "/special/listeditem/facility",
|
||||
method: "get",
|
||||
});
|
||||
}
|
||||
//物品使用情况
|
||||
export function goodsend() {
|
||||
return request({
|
||||
url: "/special/listeditem/goodsend",
|
||||
method: "get",
|
||||
});
|
||||
}
|
||||
//获取枪支记录
|
||||
export function nums() {
|
||||
return request({
|
||||
url: "/special/listeditem/nums",
|
||||
method: "get",
|
||||
});
|
||||
}
|
||||
//枪支雷达图
|
||||
export function gunmanage() {
|
||||
return request({
|
||||
url: "/special/listeditem/gunmanage",
|
||||
method: "post",
|
||||
});
|
||||
}
|
||||
//放射源种类及数量
|
||||
export function radiation() {
|
||||
return request({
|
||||
url: "/special/listeditem/radiation",
|
||||
method: "get",
|
||||
});
|
||||
}
|
||||
//放射源使用
|
||||
export function radiationuse() {
|
||||
return request({
|
||||
url: "/special/listeditem/radiationuse",
|
||||
method: "get",
|
||||
});
|
||||
}
|
||||
|
||||
//列管物品异常统计
|
||||
export function relatedcompanycount() {
|
||||
return request({
|
||||
url: "/special/listeditem/relatedcompanycount",
|
||||
method: "get",
|
||||
});
|
||||
}
|
||||
//放射源运输
|
||||
export function transport() {
|
||||
return request({
|
||||
url: "/special/listeditem/transport",
|
||||
method: "get",
|
||||
});
|
||||
}
|
@ -1,23 +0,0 @@
|
||||
import request from "@/utils/request";
|
||||
//网络安全事件TOP5
|
||||
export function vehicle() {
|
||||
return request({
|
||||
url: "/special/internet/vehicle",
|
||||
method: "get",
|
||||
});
|
||||
}
|
||||
//网络安全信息列表
|
||||
export function internetlist() {
|
||||
return request({
|
||||
url: "/special/internet/internetlist",
|
||||
method: "post",
|
||||
});
|
||||
}
|
||||
//数据统计
|
||||
export function counts(params) {
|
||||
return request({
|
||||
url: "/special/internet/counts",
|
||||
method: "post",
|
||||
params,
|
||||
});
|
||||
}
|
@ -1,65 +0,0 @@
|
||||
import request from "@/utils/request";
|
||||
//流动人口详情
|
||||
export function population() {
|
||||
return request({
|
||||
url: "/special/personnel/population",
|
||||
method: "post",
|
||||
});
|
||||
}
|
||||
//重要岗位详情
|
||||
export function emphasis() {
|
||||
return request({
|
||||
url: "/special/personnel/emphasis",
|
||||
method: "post",
|
||||
});
|
||||
}
|
||||
//重点人员详情
|
||||
export function postkey() {
|
||||
return request({
|
||||
url: "/special/personnel/postkey",
|
||||
method: "post",
|
||||
});
|
||||
}
|
||||
//流动人口核查率低企业TOP10
|
||||
export function poplutop() {
|
||||
return request({
|
||||
url: "/special/personnel/poplutop",
|
||||
method: "get",
|
||||
});
|
||||
}
|
||||
//主页数字统计
|
||||
export function nums() {
|
||||
return request({
|
||||
url: "/special/personnel/nums",
|
||||
method: "get",
|
||||
});
|
||||
}
|
||||
//获取统计数
|
||||
export function peoplenums(params) {
|
||||
return request({
|
||||
url: "/special/personnel/peoplenums",
|
||||
method: "post",
|
||||
params,
|
||||
});
|
||||
}
|
||||
//大屏统计
|
||||
export function personnelnum() {
|
||||
return request({
|
||||
url: "/special/personnel/personnelnum",
|
||||
method: "get",
|
||||
});
|
||||
}
|
||||
//流动人员核查率
|
||||
export function poplupople() {
|
||||
return request({
|
||||
url: "/special/personnel/poplupople",
|
||||
method: "get",
|
||||
});
|
||||
}
|
||||
//重点岗位异常数
|
||||
export function posterror() {
|
||||
return request({
|
||||
url: "/special/personnel/posterror",
|
||||
method: "get",
|
||||
});
|
||||
}
|
@ -1,78 +0,0 @@
|
||||
import request from "@/utils/request";
|
||||
//企业整改信息
|
||||
export function enterprisereclist() {
|
||||
return request({
|
||||
url: "/special/road/enterprisereclist",
|
||||
method: "post",
|
||||
});
|
||||
}
|
||||
//企业整改
|
||||
export function enterpriserectification() {
|
||||
return request({
|
||||
url: "/special/road/enterpriserectification",
|
||||
method: "get",
|
||||
});
|
||||
}
|
||||
//饼状图
|
||||
export function piechart() {
|
||||
return request({
|
||||
url: "/special/road/piechart",
|
||||
method: "get",
|
||||
});
|
||||
}
|
||||
//源头检查数据
|
||||
export function source() {
|
||||
return request({
|
||||
url: "/special/road/source",
|
||||
method: "get",
|
||||
});
|
||||
}
|
||||
//源头数据列表
|
||||
export function sourcelist() {
|
||||
return request({
|
||||
url: "/special/road/sourcelist",
|
||||
method: "post",
|
||||
});
|
||||
}
|
||||
//交通事故
|
||||
export function trafficaccidents() {
|
||||
return request({
|
||||
url: "/special/road/trafficaccidents",
|
||||
method: "get",
|
||||
});
|
||||
}
|
||||
//交通设施检查列表
|
||||
export function transporlist() {
|
||||
return request({
|
||||
url: "/special/road/transporlist",
|
||||
method: "post",
|
||||
});
|
||||
}
|
||||
//交通设施检查数据
|
||||
export function transportationfacilities() {
|
||||
return request({
|
||||
url: "/special/road/transportationfacilities",
|
||||
method: "get",
|
||||
});
|
||||
}
|
||||
//违章数据
|
||||
export function violationdata() {
|
||||
return request({
|
||||
url: "/special/road/violationdata",
|
||||
method: "get",
|
||||
});
|
||||
}
|
||||
//人员异常状态分析
|
||||
export function peopiechart() {
|
||||
return request({
|
||||
url: "/special/road/peopiechart",
|
||||
method: "get",
|
||||
});
|
||||
}
|
||||
//车辆异常状态分析
|
||||
export function veipiechart() {
|
||||
return request({
|
||||
url: "/special/road/veipiechart",
|
||||
method: "get",
|
||||
});
|
||||
}
|
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 277 B |
Before Width: | Height: | Size: 5.1 KiB |
Before Width: | Height: | Size: 7.1 KiB |
Before Width: | Height: | Size: 655 B |
Before Width: | Height: | Size: 42 KiB |
Before Width: | Height: | Size: 192 KiB |
Before Width: | Height: | Size: 425 B |
Before Width: | Height: | Size: 6.1 KiB |
Before Width: | Height: | Size: 4.3 KiB |
Before Width: | Height: | Size: 284 B |
Before Width: | Height: | Size: 636 B |
Before Width: | Height: | Size: 665 B |
Before Width: | Height: | Size: 652 B |
Before Width: | Height: | Size: 650 B |
Before Width: | Height: | Size: 3.5 KiB |
Before Width: | Height: | Size: 254 B |
Before Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 777 B |
Before Width: | Height: | Size: 7.4 KiB |
Before Width: | Height: | Size: 32 KiB |
Before Width: | Height: | Size: 2.1 KiB |
Before Width: | Height: | Size: 1.1 MiB |
Before Width: | Height: | Size: 463 KiB |
Before Width: | Height: | Size: 892 KiB |
Before Width: | Height: | Size: 85 KiB |
Before Width: | Height: | Size: 87 KiB |
Before Width: | Height: | Size: 87 KiB |
Before Width: | Height: | Size: 98 KiB |
Before Width: | Height: | Size: 87 KiB |
Before Width: | Height: | Size: 11 KiB |
Before Width: | Height: | Size: 87 KiB |
Before Width: | Height: | Size: 84 KiB |
Before Width: | Height: | Size: 894 B |
Before Width: | Height: | Size: 97 KiB |
Before Width: | Height: | Size: 8.6 KiB |
Before Width: | Height: | Size: 7.8 KiB |
Before Width: | Height: | Size: 8.0 KiB |
Before Width: | Height: | Size: 10 KiB |
Before Width: | Height: | Size: 10 KiB |
Before Width: | Height: | Size: 11 KiB |
Before Width: | Height: | Size: 34 KiB |
Before Width: | Height: | Size: 12 KiB |
Before Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 786 B |
Before Width: | Height: | Size: 34 KiB |
Before Width: | Height: | Size: 34 KiB |
Before Width: | Height: | Size: 35 KiB |
Before Width: | Height: | Size: 35 KiB |
Before Width: | Height: | Size: 34 KiB |
Before Width: | Height: | Size: 34 KiB |
Before Width: | Height: | Size: 34 KiB |
Before Width: | Height: | Size: 34 KiB |
Before Width: | Height: | Size: 35 KiB |
Before Width: | Height: | Size: 35 KiB |
Before Width: | Height: | Size: 34 KiB |
Before Width: | Height: | Size: 35 KiB |
Before Width: | Height: | Size: 35 KiB |
Before Width: | Height: | Size: 34 KiB |
Before Width: | Height: | Size: 34 KiB |
Before Width: | Height: | Size: 34 KiB |
Before Width: | Height: | Size: 35 KiB |
Before Width: | Height: | Size: 35 KiB |
Before Width: | Height: | Size: 34 KiB |
Before Width: | Height: | Size: 34 KiB |
Before Width: | Height: | Size: 35 KiB |
Before Width: | Height: | Size: 35 KiB |
Before Width: | Height: | Size: 34 KiB |
Before Width: | Height: | Size: 34 KiB |
Before Width: | Height: | Size: 35 KiB |