parent
e5ae0a4326
commit
62623f6360
@ -1,9 +1,65 @@
|
|||||||
import request from "@/utils/request";
|
import request from "@/utils/request";
|
||||||
//专题评估报告详情查询接口
|
//危险化学品占比统计
|
||||||
export function queryListDetails(params) {
|
export function chemicals() {
|
||||||
return request({
|
return request({
|
||||||
url: "/ThematicEvaluationController/QueryListDetails",
|
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",
|
method: "post",
|
||||||
params,
|
});
|
||||||
|
}
|
||||||
|
//放射源种类及数量
|
||||||
|
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,9 +1,65 @@
|
|||||||
import request from "@/utils/request";
|
import request from "@/utils/request";
|
||||||
//专题评估报告详情查询接口
|
//流动人口详情
|
||||||
export function queryListDetails(params) {
|
export function population() {
|
||||||
return request({
|
return request({
|
||||||
url: "/ThematicEvaluationController/QueryListDetails",
|
url: "/special/personnel/population",
|
||||||
method: "post",
|
method: "post",
|
||||||
params,
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
//重要岗位详情
|
||||||
|
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() {
|
||||||
|
return request({
|
||||||
|
url: "/special/personnel/peoplenums",
|
||||||
|
method: "post",
|
||||||
|
});
|
||||||
|
}
|
||||||
|
//大屏统计
|
||||||
|
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",
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in new issue