zhangwencui
4 小时以前 43108713edd2402917106af286b62e1bfa8485bf
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
// 社会保险设置
import request from "@/utils/request";
 
// 分页查询列表
export function socialSecurityListPage(query) {
  return request({
    url: "/socialSecurity/plan/listPage",
    method: "get",
    params: query,
  });
}
 
// 查询详情
export function socialSecurityInfo(id) {
  return request({
    url: "/socialSecurity/plan/" + id,
    method: "get",
  });
}
 
// 新增
export function socialSecurityAdd(data) {
  return request({
    url: "/socialSecurity/plan/add",
    method: "post",
    data,
  });
}
 
// 修改
export function socialSecurityUpdate(data) {
  return request({
    url: "/socialSecurity/plan/update",
    method: "post",
    data,
  });
}
 
// 删除
export function socialSecurityDelete(ids) {
  return request({
    url: "/socialSecurity/plan/delete",
    method: "delete",
    data: ids,
  });
}