From 16515bad26b548a059dd418a95fe45c0ec919e9c Mon Sep 17 00:00:00 2001 From: bb_pan Date: Sat, 6 Sep 2025 13:06:39 +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/dateUpdate/index.vue | 3 +++ src/pages/picking/outbound/index.vue | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/src/pages/dateUpdate/index.vue b/src/pages/dateUpdate/index.vue index 5857512..0a96777 100644 --- a/src/pages/dateUpdate/index.vue +++ b/src/pages/dateUpdate/index.vue @@ -372,6 +372,9 @@ const handleSearch = () => { } handleCheck(item) } + } else { + typeList.value = [] + uni.showToast({ title: '未查询到相关设备', icon: 'none' }) } }).catch(error => { console.log(error) diff --git a/src/pages/picking/outbound/index.vue b/src/pages/picking/outbound/index.vue index 14b8d53..6009c87 100644 --- a/src/pages/picking/outbound/index.vue +++ b/src/pages/picking/outbound/index.vue @@ -230,8 +230,8 @@ const getTableList = async (isTap = false, isSearch = false) => { const unique = [] const seen = new Set() for (const item of merged) { - if (!seen.has(item.taskId)) { - seen.add(item.taskId) + if (!seen.has(item.code)) { + seen.add(item.code) unique.push(item) } }