zhengpz
2021-08-23 dc91db9bb3473c3ed058f86f74359e15c035a8a5
src/api/index/index.js
@@ -19,33 +19,93 @@
    method: "get"
  });
};
export const getLiveLocationVoList = (params) => {
export const getLiveLocationVoList = params => {
  return request({
    url: "/api/liveLocation/getLiveLocationVoList",
    method: "get",
    params: params
  });
};
// 获取辖区列表
export const lazyTreeJu = () => {
  return request({
    url: "/api/information/lazyTreeJu",
    method: "post"
  });
};
export const noholderNum = (params) => {
export const noholderNum = params => {
  return request({
    url: "/api/information/selectInCount",
    method: "post",
    params: params
  });
};
export const noSocialSecurity = (params) => {
export const noSocialSecurity = params => {
  return request({
    url: "/api/information/selectCs",
    method: "post",
    params: params
  });
};
export const selectFj = () => {
  return request({
    url: "/api/information/selectFj",
    method: "post"
  });
};
export const selectBx = params => {
  return request({
    url: "/api/information/selectBx",
    method: "post",
    params: params
  });
};
export const selectExtype = params => {
  return request({
    url: "/api/information/selectExtype",
    method: "post",
    params: params
  });
};
export const seCountUg = params => {
  return request({
    url: "/api/information/seCountUg",
    method: "post",
    params: params
  });
};
export const seCountI = params => {
  return request({
    url: "/api/information/seCountI",
    method: "post",
    params: params
  });
};
export const selectExtypeUser = () => {
  return request({
    url: "/api/information/selectExtypeUser",
    method: "post"
  });
};
// 资格审查异常人员清单
export const qualificationPages = (params) => {
  return request({
    url: "/api/blade-user/pages",
    method: "get",
    params: params
  });
};
// 监管处罚数量
export const selectCf = () => {
  return request({
    url: "/api/information/selectCf",
    method: "post"
  });
};
// 公司材料不全数量
export const selectCl = () => {
  return request({
    url: "/api/information/selectCl",
    method: "post"
  });
};