From 3d83968969d1763f65863b74ed81f27de59b6e90 Mon Sep 17 00:00:00 2001 From: bb_pan Date: Tue, 12 Aug 2025 18:26:03 +0800 Subject: [PATCH] =?UTF-8?q?=E6=A0=B7=E5=BC=8F=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 | 38 ++++++++++++++++++++ 1 file changed, 38 insertions(+) diff --git a/src/pages/picking/outbound/code-outbound.vue b/src/pages/picking/outbound/code-outbound.vue index e7af89e..dccdd56 100644 --- a/src/pages/picking/outbound/code-outbound.vue +++ b/src/pages/picking/outbound/code-outbound.vue @@ -28,6 +28,33 @@ {{ maxNum }} + +
+
+ {{ item.maCode }} + +
+
+
@@ -221,6 +248,17 @@ onShow(() => { // getCodeDetailData(queryParams.value.id, queryParams.value.publishTask, queryParams.value.typeId) //获取详情 }) +const handleItemChecked = (item) => { + console.log('🚀 ~ handleItemChecked ~ item:', item) + checkedIds.value = checkedIds.value.filter((el) => el.maId !== item.maId) + + codeDeviceList.value.forEach((el) => { + if (el.maId === item.maId) { + el.checked = !el.checked + } + }) +} + const isWithinOneMonth = (dateStr) => { if (!dateStr) return false