zhangwencui
8 小时以前 8d48fa86c9096f6bac90e83ed779e5a5b62b0fc7
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",
  });
}