From b1aee667766123c897e5f3eb19cef710a0407189 Mon Sep 17 00:00:00 2001 From: gaojs <757918719@qq.com> Date: Thu, 25 Jul 2024 16:33:49 +0800 Subject: [PATCH] =?UTF-8?q?SCP=20=E2=80=94=E2=80=94>=20=20=20bug=20?= =?UTF-8?q?=E5=8F=91=E8=B4=A7=20=E8=87=AA=E5=88=B6=E5=A4=87=E4=BB=B6?= =?UTF-8?q?=E5=8F=91=E8=B4=A7=20=20=E9=80=80=E8=B4=A7=20=E5=88=B0=E8=B4=A7?= =?UTF-8?q?=E6=97=A5=E6=9C=9F/=E7=94=9F=E4=BA=A7=E6=97=A5=E6=9C=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/wms/customerdock/index.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/api/wms/customerdock/index.ts b/src/api/wms/customerdock/index.ts index a7e631080..a340407fe 100644 --- a/src/api/wms/customerdock/index.ts +++ b/src/api/wms/customerdock/index.ts @@ -28,6 +28,10 @@ export const getCustomerdockPage = async (params) => { } } +export const getdeliverCustomerdockPage = async (params) => { + return await request.get({ url: `/wms/customerdock/deliverPages`, params }) +} + // 查询客户月台详情 export const getCustomerdock = async (id: number) => { return await request.get({ url: `/wms/customerdock/get?id=` + id }) @@ -83,4 +87,4 @@ export const pageCustomerCodeToCustomerDockReceiving = async (params) => { } else { return await request.get({ url: `/wms/customerdock/pageCustomerCodeToCustomerDockReceiving`, params }) } -} \ No newline at end of file +}