yyb
18 小时以前 77f74b092b083cb5b46bfd7f174cb64ac5d54656
src/api/productionManagement/productionReporting.js
@@ -33,11 +33,28 @@
    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",
  });
}