保安监管系统-验收版本
zhengpz
2021-09-17 0bfdaad01fdcdeef567b59a49f7715a7ac7f0d51
src/api/index/index.js
@@ -150,3 +150,71 @@
    method: "get"
  });
};
// 地图-保安公司列表接口
export const getSecurityUnitPositionInfo = () => {
  return request({
    url: "/api/information/getSecurityUnitPositionInfo",
    method: "get"
  });
};
// 业务对象统计---保安公司模块表格接口
export const getSecurityUnitInfoPage = params => {
  return request({
    url: "/api/information/getSecurityUnitInfoPage",
    method: "get",
    params: params
  });
};
// 业务对象统计---保安员持证模块表格接口
export const getSecurityUnitHoldInfoPage = params => {
  return request({
    url: "/api/information/getSecurityUnitHoldInfoPage",
    method: "get",
    params: params
  });
};
// 考试通过率低于50%的保安公司表格接口
export const getSecurityUnitExamLessPage = params => {
  return request({
    url: "/api/information/getSecurityUnitExamLessPage?proportion=50",
    method: "get",
    params: params
  });
};
// 持证率低于50%的保安公司表格接口
export const getSecurityUnitHoldLessPage = params => {
  return request({
    url: "/api/information/getSecurityUnitHoldLessPage?proportion=50",
    method: "get",
    params: params
  });
};
// 社保缴纳率低于50%的保安公司表格接口
export const getSecurityUnitSoilLessPage = params => {
  return request({
    url: "/api/information/getSecurityUnitSoilLessPage?proportion=50",
    method: "get",
    params: params
  });
};
// 派遣率低于50%的保安公司表格接口
export const getSecurityUnitDispatcherLessPage = params => {
  return request({
    url: "/api/information/getSecurityUnitDispatcherLessPage?proportion=50",
    method: "get",
    params: params
  });
};
// 业务对象统计---预警信息模块表格接口
export const getSubstationWarnInfoPage = params => {
  return request({
    url: "/api/information/getSubstationWarnInfoPage",
    method: "get",
    params: params
  });
};