From f809c68d5a92f1bea88384b76cf45beebdb3fcf2 Mon Sep 17 00:00:00 2001 From: bb_pan Date: Sat, 5 Jul 2025 22:52:56 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/picking/outbound/code-outbound.vue | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/pages/picking/outbound/code-outbound.vue b/src/pages/picking/outbound/code-outbound.vue index 7b166ab..e696935 100644 --- a/src/pages/picking/outbound/code-outbound.vue +++ b/src/pages/picking/outbound/code-outbound.vue @@ -416,7 +416,7 @@ const boxOut = async () => { // 标准箱出库确认 const boxOutBound = async () => { // 解构所需要的数据 - const { typeId, parentId } = queryParams.value + const { typeId, parentId, publishTask } = queryParams.value // 组装出库参数 const paramsList = [] boxInfo.value.recordList.map((e) => { @@ -430,6 +430,7 @@ const boxOutBound = async () => { outNum: 1, parentId, typeId, + publishTask }) }) console.log(paramsList) @@ -558,7 +559,7 @@ const getMaInfoScan = async () => { // 二维码出库确认 const confirmCodeOutBound = async () => { // 解构所需要的数据 - const { typeId, parentId } = queryParams.value + const { typeId, parentId, publishTask } = queryParams.value // 组装出库参数 const paramsList = [] paramsList.push({ @@ -573,6 +574,7 @@ const confirmCodeOutBound = async () => { typeId, typeName: codeData.value.typeName, typeModelName: codeData.value.typeModelName, + publishTask }) const res = await setOutboundNumAPI({ leaseOutDetailsList: paramsList }) console.log('333333333333', res)