zhangwencui
昨天 617ad108a3c7f4e676229b1495185e66fac644b7
src/api/productionManagement/productionReporting.js
@@ -32,4 +32,29 @@
    method: "post",
    data: query,
  });
}
// 生产报工-分页查询
export function productionReportListPage(query) {
  return request({
    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",
  });
}