From cde2a71905f7619695afc387590116dcec650d30 Mon Sep 17 00:00:00 2001 From: chenfang Date: Fri, 19 Apr 2024 15:29:38 +0800 Subject: [PATCH 1/4] =?UTF-8?q?=E5=BA=93=E5=AD=98=E4=BD=99=E9=A2=9D?= =?UTF-8?q?=E6=89=93=E5=8D=B0=E6=A0=87=E7=AD=BE=E5=AE=9E=E9=99=85=E8=B0=83?= =?UTF-8?q?=E7=94=A8=E5=8C=85=E8=A3=85=E4=BF=A1=E6=81=AF=E7=9A=84=E6=89=93?= =?UTF-8?q?=E5=8D=B0=E6=A0=87=E7=AD=BE=E6=8C=89=E9=92=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/wms/package/index.ts | 5 ++ .../inventoryManage/balance/balance.data.ts | 2 +- .../wms/inventoryManage/balance/index.vue | 23 ++++++++ .../wms/inventoryManage/package/index.vue | 53 +++++++++++++++---- 4 files changed, 72 insertions(+), 11 deletions(-) diff --git a/src/api/wms/package/index.ts b/src/api/wms/package/index.ts index 57f4e2429..10d13d4ed 100644 --- a/src/api/wms/package/index.ts +++ b/src/api/wms/package/index.ts @@ -105,3 +105,8 @@ export const batchPrintingLable = async (data: any) => { export const getLabel = async (id: number) => { return await request.get({ url: `/wms/package/getLabel?id=` + id }) } + +// 查询包装列表 +export const getbalanceToPage = async (packingNumber: String) => { + return await request.get({ url: `/wms/package/balanceToPage?packingNumber=` + packingNumber}) +} \ No newline at end of file diff --git a/src/views/wms/inventoryManage/balance/balance.data.ts b/src/views/wms/inventoryManage/balance/balance.data.ts index 8aaf79117..4845a516e 100644 --- a/src/views/wms/inventoryManage/balance/balance.data.ts +++ b/src/views/wms/inventoryManage/balance/balance.data.ts @@ -429,7 +429,7 @@ export const Balance = useCrudSchemas(reactive([ isDetail: false, isForm: false, table: { - width: 100, + width: 200, fixed: 'right' }, } diff --git a/src/views/wms/inventoryManage/balance/index.vue b/src/views/wms/inventoryManage/balance/index.vue index 8ff5e6db3..54cc59455 100644 --- a/src/views/wms/inventoryManage/balance/index.vue +++ b/src/views/wms/inventoryManage/balance/index.vue @@ -59,12 +59,14 @@