Fix:4779 【商城小程序】商品送礼:点击“再送一份”,礼包封面选择弹窗会显示团购类的礼包封面

This commit is contained in:
linxi
2026-01-04 10:26:18 +08:00
parent 97bb3b2ee6
commit f72477a247
+3 -1
View File
@@ -373,7 +373,9 @@ export default {
}
getGiftCardResend(params).then(res => {
this.isPayOk = false
const initialCoverList = [...res.data.giftCardTemplates, res.data.specialGiftCardTemplate]
const temp = res.data.giftCardTemplates.filter(e => e.isTravelGroup === 0)
const hasSpecial = res.data.giftCardTemplates.map(e => e.id).includes(res.data.specialGiftCardTemplate.id)
const initialCoverList = hasSpecial ? [...temp] : [...temp, res.data.specialGiftCardTemplate]
const goodsInfo = res.data.cartInfo[0]
const { coverList, template } = this.adjustCoverListForProductStory(initialCoverList, goodsInfo && goodsInfo.productInfo, res.data.specialGiftCardTemplate)
this.coverList = coverList