| 对比新文件 |
| | |
| | | // 绀句細淇濋櫓璁剧疆 |
| | | import request from "@/utils/request"; |
| | | |
| | | // 鍒嗛〉鏌ヨ鍒楄〃 |
| | | export function socialSecurityListPage(query) { |
| | | return request({ |
| | | url: "/schemeApplicableStaff/listPage", |
| | | method: "get", |
| | | params: query, |
| | | }); |
| | | } |
| | | |
| | | // 鏌ヨ璇︽儏 |
| | | export function socialSecurityInfo(id) { |
| | | return request({ |
| | | url: "/schemeApplicableStaff/" + id, |
| | | method: "get", |
| | | }); |
| | | } |
| | | |
| | | // 鏂板 |
| | | export function socialSecurityAdd(data) { |
| | | return request({ |
| | | url: "/schemeApplicableStaff/add", |
| | | method: "post", |
| | | data, |
| | | }); |
| | | } |
| | | |
| | | // 淇敼 |
| | | export function socialSecurityUpdate(data) { |
| | | return request({ |
| | | url: "/schemeApplicableStaff/updateSchemeApplicableStaff", |
| | | method: "post", |
| | | data, |
| | | }); |
| | | } |
| | | |
| | | // 鍒犻櫎 |
| | | export function socialSecurityDelete(ids) { |
| | | return request({ |
| | | url: "/schemeApplicableStaff/delete", |
| | | method: "delete", |
| | | data: ids, |
| | | }); |
| | | } |