From ca69eba7f2d06dda80454be18438992f9ada9d89 Mon Sep 17 00:00:00 2001 From: zch Date: Mon, 10 Feb 2025 11:03:25 +0800 Subject: [PATCH] =?UTF-8?q?add(api/mes):=20=E6=96=B0=E5=A2=9E=E7=94=9F?= =?UTF-8?q?=E4=BA=A7=E5=B7=A5=E5=8D=95=E6=96=B0=E5=A2=9E=E7=94=9F=E4=BA=A7?= =?UTF-8?q?=E6=B4=BE=E5=B7=A5List=E6=8E=A5=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 在 planInfo 模块中添加了 orderAddProductPlanList 函数 - 该函数通过 POST 请求用于处理生产工单新增生产派工列表的业务逻辑 --- src/api/mes/planInfo/index.ts | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/api/mes/planInfo/index.ts b/src/api/mes/planInfo/index.ts index f4158d0..7164a6a 100644 --- a/src/api/mes/planInfo/index.ts +++ b/src/api/mes/planInfo/index.ts @@ -100,3 +100,12 @@ export function selectProductPlans(query) { params: query }) } + +// 生产工单新增生产派工List +export function orderAddProductPlanList(data) { + return request({ + url: '/mes/planInfo/orderAddProductPlanList', + method: 'post', + data: data + }) +}