zhangwencui
2026-04-23 13d28048c9dc91bd0cb290252cad5b76a31b13cb
src/api/productionPlan/productionPlan.js
@@ -39,7 +39,7 @@
// 生产计划-新增修改
export function productionPlanAdd(query) {
  return request({
    url: "/productionPlan/updateProductionPlan",
    url: "/productionPlan/addProductionPlan",
    method: "post",
    data: query,
  });
@@ -47,7 +47,7 @@
export function productionPlanUpdate(query) {
  return request({
    url: "/productionPlan/updateProductionPlan",
    method: "post",
    method: "put",
    data: query,
  });
}
@@ -55,7 +55,7 @@
// 生产计划-删除
export function productionPlanDelete(data) {
  return request({
    url: "/productionPlan",
    url: "/productionPlan/deleteProductionPlan",
    method: "delete",
    data,
  });
@@ -63,7 +63,7 @@
// 合并下发
export function productionPlanCombine(query) {
  return request({
    url: "/productionPlan/updateProductionPlan",
    url: "/productionPlan/combine",
    method: "post",
    data: query,
  });