| | |
| | | // 分页查询列表 |
| | | export function socialSecurityListPage(query) { |
| | | return request({ |
| | | url: "/socialSecurity/plan/listPage", |
| | | url: "/schemeApplicableStaff/listPage", |
| | | method: "get", |
| | | params: query, |
| | | }); |
| | |
| | | // 查询详情 |
| | | export function socialSecurityInfo(id) { |
| | | return request({ |
| | | url: "/socialSecurity/plan/" + id, |
| | | url: "/schemeApplicableStaff/" + id, |
| | | method: "get", |
| | | }); |
| | | } |
| | |
| | | // 新增 |
| | | export function socialSecurityAdd(data) { |
| | | return request({ |
| | | url: "/socialSecurity/plan/add", |
| | | url: "/schemeApplicableStaff/add", |
| | | method: "post", |
| | | data, |
| | | }); |
| | |
| | | // 修改 |
| | | export function socialSecurityUpdate(data) { |
| | | return request({ |
| | | url: "/socialSecurity/plan/update", |
| | | url: "/schemeApplicableStaff/updateSchemeApplicableStaff", |
| | | method: "post", |
| | | data, |
| | | }); |
| | |
| | | // 删除 |
| | | export function socialSecurityDelete(ids) { |
| | | return request({ |
| | | url: "/socialSecurity/plan/delete", |
| | | url: "/schemeApplicableStaff/delete", |
| | | method: "delete", |
| | | data: ids, |
| | | }); |