Fix:4819 【商城小程序】已被领取的盲盒礼包,在24小时后查看领取页面会显示为礼包已失效(24小时内、24小时后查看都应该显示为已领取的效果)

This commit is contained in:
LinCyJang
2026-01-14 23:11:42 +08:00
parent 4332fe91db
commit 84ddb0790e
+2 -2
View File
@@ -45,7 +45,7 @@ export default {
},
computed: {
showGift() {
return !this.giftCard.isExpire || !!this.giftCard.isUserReceive
return !this.giftCard.isExpire || !!this.giftCard.isUserReceive || (this.giftCard.isBind === 1 && this.giftCard.giftProducts[0].isCurrentUser === 1)
}
},
onShow() {
@@ -176,4 +176,4 @@ export default {
}
</style>
</style>