master #12

Merged
shiran merged 14 commits from master into deploy 2025-12-12 19:12:26 +08:00
Showing only changes of commit b56359e572 - Show all commits
+1 -1
View File
@@ -408,7 +408,7 @@ const fetchProductList = async () => {
if (res.data.code === 200) {
productList.value = res.data.data.data || []
productList.value = productList.value.filter(item => item.delete == false)
total.value = res.data.data.total || 0
total.value = res.data.data.all_count || 0
productList.value = productList.value.map(item => {
item.image = item.coverId ? getFileDetail({ file_id: item.coverId }).then(res => res.data.data.url) : ''
return item