| 对比新文件 |
| | |
| | | // 钖叕绠$悊 |
| | | import request from "@/utils/request"; |
| | | |
| | | // 鏌ヨ鍒楄〃 |
| | | export function compensationListPage(query) { |
| | | return request({ |
| | | url: "/compensationPerformance/listPage", |
| | | method: "get", |
| | | params: query, |
| | | }); |
| | | } |
| | | // 鏂板 |
| | | export function compensationAdd(query) { |
| | | return request({ |
| | | url: "/compensationPerformance/add", |
| | | method: "post", |
| | | data: query, |
| | | }); |
| | | } |
| | | // 淇敼 |
| | | export function compensationUpdate(query) { |
| | | return request({ |
| | | url: "/compensationPerformance/update", |
| | | method: "post", |
| | | data: query, |
| | | }); |
| | | } |
| | | // 鍒犻櫎 |
| | | export function compensationDelete(query) { |
| | | return request({ |
| | | url: "/compensationPerformance/delete", |
| | | method: "delete", |
| | | data: query, |
| | | }); |
| | | } |