gaoluyang
4 天以前 7118f393605f8ef28457430d43a2608aa02f1696
src/api/productionManagement/productionOrder.js
@@ -113,4 +113,21 @@
    method: "post",
    data: data,
  });
}
// 手动新增生产订单
export function addProductOrder(data) {
  return request({
    url: "/productOrder/add",
    method: "post",
    data: data,
  });
}
// 生产订单-批量删除(传 id 数组)
export function deleteProductOrder(ids) {
  return request({
    url: "/productOrder/delete",
    method: "delete",
    data: ids,
  });
}