yyb
8 小时以前 55199a22f3db67b6cee66e8fd5b461809d0f610a
src/api/productionManagement/workOrder.js
@@ -23,3 +23,21 @@
    data: data,
  });
}
export function reportState(params) {
  return request({
    url: "/productionProductMain/reportState",
    method: "get",
    params,
  });
}
// 下载工单流转卡(返回文件流)
export function downProductWorkOrder(id) {
  return request({
    url: "/productWorkOrder/down",
    method: "post",
    data: { id },
    responseType: "blob",
  });
}