zhangxiaoxu123456
2022-04-24 6e352fc609a77935c55e21e9b71d3c1be8a5accd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
import {getRequest,postRequest} from "../libs/axios";
 
//10.查询历年社会保险参保人员分析图数据接口
export const getPersonChart = (params) => {
  return postRequest('/ybg/webservice/app/social/getPersonChart.do', params)
}
 
//11.查询社会保险参保人员统计表数据接口
export const getPersonTable = (params) => {
  return postRequest('/ybg/webservice/app/social/getPersonTable.do', params)
}
 
//14.查询职工养老保险参保人数数据接口
export const getSecurityTable = (params) => {
  return postRequest('/ybg/webservice/app/social/getSecurityTable.do', params)
}
 
//15.查询近一年职工养老保险参保人数折线图数据接口
export const getSecurityDetailChart = (params) => {
  return postRequest('/ybg/webservice/app/social/getSecurityDetailChart.do', params)
}
 
//16.查询社会保险参保人数表格数据接口
export const getInsuranceTable = (params) => {
  return postRequest('/ybg/webservice/app/social/getInsuranceTable.do', params)
}
 
//17.查询社保征缴收入明细总览表格数据接口
export const getFundincomeTable = (params) => {
  return postRequest('/ybg/webservice/app/social/getFundincomeTable.do', params)
}
 
//18.查询社保征缴收入和参保人数平均值表格数据接口
export const getAverageTable = (params) => {
  return postRequest('/ybg/webservice/app/social/getAverageTable.do', params)
}
 
//17.查询社保卡持卡人数数据接口
export const getCardNumsTable = (params) => {
  return postRequest('/ybg/webservice/app/social/getCardNumsTable.do',params)
}