parent
6dec70cb56
commit
4c6bf136a6
@ -1,9 +1,50 @@
|
|||||||
import request from "@/utils/request";
|
import request from "@/utils/request";
|
||||||
//专题评估报告详情查询接口
|
//人防,物防,技防
|
||||||
export function queryListDetails(params) {
|
export function alldefense() {
|
||||||
return request({
|
return request({
|
||||||
url: "/ThematicEvaluationController/QueryListDetails",
|
url: "/special/defenses/alldefense",
|
||||||
method: "post",
|
method: "post",
|
||||||
params,
|
});
|
||||||
|
}
|
||||||
|
//反恐目标单位检查数据
|
||||||
|
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",
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -1,9 +1,29 @@
|
|||||||
import request from "@/utils/request";
|
import request from "@/utils/request";
|
||||||
//专题评估报告详情查询接口
|
//车辆详情
|
||||||
export function queryListDetails(params) {
|
export function vehicledetail() {
|
||||||
return request({
|
return request({
|
||||||
url: "/ThematicEvaluationController/QueryListDetails",
|
url: "/special/vehicle/vehicledetail",
|
||||||
method: "post",
|
method: "post",
|
||||||
params,
|
});
|
||||||
|
}
|
||||||
|
//车辆的违规信息统计
|
||||||
|
export function violationdetail() {
|
||||||
|
return request({
|
||||||
|
url: "/special/vehicle/violationdetail",
|
||||||
|
method: "post",
|
||||||
|
});
|
||||||
|
}
|
||||||
|
//车辆的违规信息统计
|
||||||
|
export function violations() {
|
||||||
|
return request({
|
||||||
|
url: "/special/vehicle/violations",
|
||||||
|
method: "post",
|
||||||
|
});
|
||||||
|
}
|
||||||
|
//获取统计数
|
||||||
|
export function nums() {
|
||||||
|
return request({
|
||||||
|
url: "/special/vehicle/nums",
|
||||||
|
method: "get",
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -1,9 +1,72 @@
|
|||||||
import request from "@/utils/request";
|
import request from "@/utils/request";
|
||||||
//专题评估报告详情查询接口
|
//异常信息
|
||||||
export function queryListDetails(params) {
|
export function exceptioninfo() {
|
||||||
return request({
|
return request({
|
||||||
url: "/ThematicEvaluationController/QueryListDetails",
|
url: "/special/peace/exceptioninfo",
|
||||||
method: "post",
|
method: "post",
|
||||||
params,
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
//重要岗位详情
|
||||||
|
export function postdetail() {
|
||||||
|
return request({
|
||||||
|
url: "/special/peace/postdetail",
|
||||||
|
method: "post",
|
||||||
|
});
|
||||||
|
}
|
||||||
|
//案件信息
|
||||||
|
export function caseinfo() {
|
||||||
|
return request({
|
||||||
|
url: "/special/peace/caseinfo",
|
||||||
|
method: "post",
|
||||||
|
});
|
||||||
|
}
|
||||||
|
//矛盾纠纷
|
||||||
|
export function contradiction() {
|
||||||
|
return request({
|
||||||
|
url: "/special/peace/contradiction",
|
||||||
|
method: "post",
|
||||||
|
});
|
||||||
|
}
|
||||||
|
//劳资纠纷
|
||||||
|
export function labour() {
|
||||||
|
return request({
|
||||||
|
url: "/special/peace/labour",
|
||||||
|
method: "post",
|
||||||
|
});
|
||||||
|
}
|
||||||
|
//内部治安列表
|
||||||
|
export function peacelist() {
|
||||||
|
return request({
|
||||||
|
url: "/special/peace/peacelist",
|
||||||
|
method: "post",
|
||||||
|
});
|
||||||
|
}
|
||||||
|
//原材料被盗
|
||||||
|
export function steal() {
|
||||||
|
return request({
|
||||||
|
url: "/special/peace/steal",
|
||||||
|
method: "post",
|
||||||
|
});
|
||||||
|
}
|
||||||
|
//企业三防以及特种设备数据
|
||||||
|
export function vkey() {
|
||||||
|
return request({
|
||||||
|
url: "/special/peace/visit/key",
|
||||||
|
method: "post",
|
||||||
|
});
|
||||||
|
}
|
||||||
|
//内部治安统计
|
||||||
|
export function peacenums() {
|
||||||
|
return request({
|
||||||
|
url: "/special/peace/peacenums",
|
||||||
|
method: "get",
|
||||||
|
});
|
||||||
|
}
|
||||||
|
//数据统计
|
||||||
|
export function statistics() {
|
||||||
|
return request({
|
||||||
|
url: "/special/peace/statistics",
|
||||||
|
method: "get",
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in new issue