zhangxiaoxu123
2022-09-13 08b5ddfa9a0a2ed52bd7d7b98ca16ef4dcc610a6
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
42
43
44
45
46
47
48
49
50
51
import {getRequest,postRequest} from "../libs/axios";
 
//10.查询历年社会保险参保人员分析图数据接口
export const getPersonChart = (params) => {
  return postRequest('/webservice/app/social/getPersonChart.do', params)
}
 
//11.查询社会保险参保人员统计表数据接口
export const getPersonTable = (params) => {
  return postRequest('/webservice/app/social/getPersonTable.do', params)
}
 
//34.查询社会保障基金统计表数据接口
export const getStatisticsTable = (params) => {
  return postRequest('/webservice/app/social/getStatisticsTable.do', params)
}
 
//12.查询职工养老保险参保人数数据接口
export const getSecurityTable = (params) => {
  return postRequest('/webservice/app/social/getSecurityTable.do', params)
}
 
//13.查询近一年职工养老保险参保人数折线图数据接口
export const getSecurityDetailChart = (params) => {
  return postRequest('/webservice/app/social/getSecurityDetailChart.do', params)
}
 
//14.查询社会保险参保人数表格数据接口
export const getInsuranceTable = (params) => {
  return postRequest('/webservice/app/social/getInsuranceTable.do', params)
}
 
//15.查询社保征缴收入明细总览表格数据接口
export const getFundincomeTable = (params) => {
  return postRequest('/webservice/app/social/getFundincomeTable.do', params)
}
 
//16.查询社保征缴收入和参保人数平均值表格数据接口
export const getAverageTable = (params) => {
  return postRequest('/webservice/app/social/getAverageTable.do', params)
}
 
//17.查询社保卡持卡人数数据接口
export const getCardNumsTable = (params) => {
  return postRequest('/webservice/app/social/getCardNumsTable.do',params)
}
 
// 35. 查询历年社保基金数据分析图数据接口
export const getStatisticsChart = (params) => {
  return postRequest('/webservice/app/social/getStatisticsChart.do',params)
}