From 48c597b7684ab635892279cc7df53d8eb2086dcb Mon Sep 17 00:00:00 2001 From: rui_li <877258667@qq.com> Date: Sat, 2 Apr 2022 10:23:17 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8E=92=E4=BA=A7=E6=89=A9=E5=B1=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/schedule/order_schedule_expand.js | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 src/api/schedule/order_schedule_expand.js diff --git a/src/api/schedule/order_schedule_expand.js b/src/api/schedule/order_schedule_expand.js new file mode 100644 index 0000000..4b9a92a --- /dev/null +++ b/src/api/schedule/order_schedule_expand.js @@ -0,0 +1,10 @@ +import { createAPI } from '@/utils/httpRequest.js' + +// 获取待排产的工单 +export const getShopOrderList = data => createAPI('scheduling/getShopOrderList', 'POST', data) + +//获取当前人员的日历编码和描述 +export const getCurrentWorkCenterNoByResourceId = data => createAPI('scheduling/getCurrentWorkCenterNoByResourceId', 'POST', data) + + +