| | |
| | | data: query, |
| | | }); |
| | | } |
| | | // 生产报工-删除 |
| | | export function productionReportDelete(query) { |
| | | |
| | | |
| | | // 生产报工-分页查询 |
| | | export function productionReportListPage(query) { |
| | | return request({ |
| | | url: "/productionProductMain/delete", |
| | | method: "delete", |
| | | data: query, |
| | | url: "/productionProductMain/listPage", |
| | | method: "get", |
| | | params: query, |
| | | }); |
| | | } |
| | | // 生产报工-详情 |
| | | export function productionReportDetail(id) { |
| | | return request({ |
| | | url: "/productionRecord/detail/" + id, |
| | | method: "get", |
| | | }); |
| | | } |
| | | |
| | | // 生产报工-删除 |
| | | export function productionReportDelete(id) { |
| | | return request({ |
| | | url: `/productionRecord/`+id, |
| | | method: "delete", |
| | | }); |
| | | } |