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