From 9c24f90f4bca6ace132eb44091c29f20aaa8cdcd Mon Sep 17 00:00:00 2001 From: zhangyh Date: Thu, 20 Nov 2025 15:02:47 +0800 Subject: [PATCH] =?UTF-8?q?bugfix:=20=E4=B8=8A=E4=BC=A0=E9=A6=96=E5=B0=BE?= =?UTF-8?q?=E5=B8=A7=E5=9B=BE=E7=89=87=E5=BC=B9=E7=AA=97=E5=88=97=E8=A1=A8?= =?UTF-8?q?=E5=8E=BB=E9=99=A4=E8=A7=86=E9=A2=91AIDA312-68?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/component/home/design/editDesignType/index.vue | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/component/home/design/editDesignType/index.vue b/src/component/home/design/editDesignType/index.vue index 1be335a3..a5c76be2 100644 --- a/src/component/home/design/editDesignType/index.vue +++ b/src/component/home/design/editDesignType/index.vue @@ -1233,7 +1233,12 @@ export default defineComponent({ const showProductList = ref(false) const productType = ref('first') const fullProductImages = computed(() => { - return productimg.likeDesignCollectionList.flatMap(item => item.childList || []) + + return productimg.likeDesignCollectionList.flatMap(item => + (item.childList || []).filter( + child => child.resultType !== 'PoseTransfer' + ) + ) }) const handleOpenProduct = (type: 'first' | 'last') => { productType.value = type