liuyg
2021-08-02 d2e76fb70eea883bf4a365c8b795f3f2ce9d6de8
src/api/index/index.js
@@ -2,22 +2,50 @@
// http://2h3f861221.wicp.vip:58646/information/SelectCount
export const securityTotal = () => {
  return request({
    url: "http://2h3f861221.wicp.vip:58646/information/SelectCount",
    url: "/api/information/SelectCount",
    method: "post"
  });
};
export const holderNum = () => {
  return request({
    url: "http://2h3f861221.wicp.vip:58646/information/SelectCounthold",
    url: "/api/information/SelectCounthold",
    method: "post"
  });
};
export const securityPer = () => {
    return request({
      url: "http://2h3f861221.wicp.vip:58646/performance/queryYearPer",
      method: "get"
    });
  };
  return request({
    url: "/api/performance/queryYearPer",
    method: "get"
  });
};
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) => {
  return request({
    url: "/api/information/selectInCount",
    method: "post",
    params: params
  });
};
export const noSocialSecurity = (params) => {
  return request({
    url: "/api/information/selectCs",
    method: "post",
    params: params
  });
};