gaoluyang
7 天以前 74149e5726e654492540075b74ebb46b7f37e68a
1
2
3
4
5
6
7
8
9
10
11
// 生产报工页面接口
import request from "@/utils/request";
 
// 获取工序参数列表-生产订单
export function findProcessParamListOrder(query) {
  return request({
    url: `/productionOrderRoutingOperationParam/list`,
    method: "get",
    params: query,
  });
}