保安监管系统-验收版本
liuyg
2021-09-22 d2611ee5cb26997b5902b0be82c10c3d1fe4a86c
src/api/index/index.js
@@ -47,10 +47,16 @@
    params: params
  });
};
// export const selectFj = () => {
//   return request({
//     url: "/api/information/selectFj",
//     method: "post"
//   });
// };
export const selectFj = () => {
  return request({
    url: "/api/information/selectFj",
    method: "post"
    url: "/api/information/selectSubstationWarnInfo",
    method: "get"
  });
};
export const selectBx = params => {
@@ -150,3 +156,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
  });
};