gaoluyang
10 天以前 e65bfa1d46d255f307eaa057665f01c8bde0e122
src/api/productionManagement/workOrder.js
@@ -16,6 +16,15 @@
  });
}
// 开始报工
export function startWork(data) {
  return request({
    url: "/productionProductMain/startWork",
    method: "post",
    data: data,
  });
}
export function addProductMain(data) {
  return request({
    url: "/productionProductMain/addProductMain",
@@ -86,3 +95,12 @@
    data,
  });
}
// 获取工序统计数据
export function getOperationStatistics(query) {
  return request({
    url: "/productionOperationTask/getOperation",
    method: "get",
    params: query,
  });
}