diff --git a/src/assets/images/seller/selectCollectionNullStatus.png b/src/assets/images/seller/selectCollectionNullStatus.png new file mode 100644 index 00000000..56ecc260 Binary files /dev/null and b/src/assets/images/seller/selectCollectionNullStatus.png differ diff --git a/src/views/SellerDashboard/MyListings/createSelect/historyList.vue b/src/views/SellerDashboard/MyListings/createSelect/historyList.vue index bcd2ed6c..8452f7b6 100644 --- a/src/views/SellerDashboard/MyListings/createSelect/historyList.vue +++ b/src/views/SellerDashboard/MyListings/createSelect/historyList.vue @@ -41,7 +41,10 @@ const getCreateList = ()=>{ }) } const selectCollectionItem = (item:any)=>{ - emit('selectCollectionItem',item) + console.log(item) + if(item.userLikeGroupVO?.groupDetails?.length > 0){ + emit('selectCollectionItem',item) + } } onMounted(()=>{ getCreateList() @@ -55,9 +58,12 @@ defineExpose({getCreateList})
+