liding
6 天以前 ea3e27a9b7cb6d0524073fb0c67000fba875b5fb
src/api/productionPlan/productionPlan.js
@@ -39,14 +39,14 @@
// 生产计划-新增修改
export function productionPlanAdd(query) {
  return request({
    url: "/productionPlan",
    url: "/productionPlan/addProductionPlan",
    method: "post",
    data: query,
  });
}
export function productionPlanUpdate(query) {
  return request({
    url: "/productionPlan",
    url: "/productionPlan/updateProductionPlan",
    method: "put",
    data: query,
  });
@@ -55,7 +55,7 @@
// 生产计划-删除
export function productionPlanDelete(data) {
  return request({
    url: "/productionPlan",
    url: "/productionPlan/deleteProductionPlan",
    method: "delete",
    data,
  });