bugfix: 上传首尾帧图片弹窗列表去除视频AIDA312-68
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user