bugfix: 上传首尾帧图片弹窗列表去除视频AIDA312-68

This commit is contained in:
zhangyh
2025-11-20 15:02:47 +08:00
parent d07cc507ab
commit 9c24f90f4b

View File

@@ -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