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