Fix:4309 【旅居商城小程序】旅居收礼页面无数据

This commit is contained in:
LinCyJang
2025-11-01 13:02:38 +08:00
parent cebe0c75d4
commit f08818a7d7
5 changed files with 12 additions and 7 deletions
+1 -1
View File
@@ -494,7 +494,7 @@ export default {
}) })
return { return {
title: '礼笺轻启,礼藏心意', title: '礼笺轻启,礼藏心意',
path: `/pkg_user/views/gift/receive?code=${this.giftItem.giftCardInfo.code}`, path: `/pkg_user/views/gift/receive?code=${this.giftItem.giftCardInfo.code}&isTravelGroup=${this.giftItem.isTravelGroup ? 1 : 0}`,
imageUrl: this.giftItem.giftCardInfo.giftCardImage imageUrl: this.giftItem.giftCardInfo.giftCardImage
} }
}, },
+2 -2
View File
@@ -64,13 +64,13 @@
<u-icon :name="webUrl + '/icon/share.png'" ></u-icon> <u-icon :name="webUrl + '/icon/share.png'" ></u-icon>
</button> </button>
</view> </view>
<view v-if="card.isUserReceive === 1" @click="toHome" style="z-index: 10; display: flex;flex-direction: column;align-items: center;"> <view v-if="card.isOverReceive === 1" @click="toHome" style="z-index: 10; display: flex;flex-direction: column;align-items: center;">
<view class="address-btn v12-white-text v12-primary"> <view class="address-btn v12-white-text v12-primary">
礼包已被领取 礼包已被领取
</view> </view>
<view class="info-btn v12-text-center v12-font-32 v12-mt-3" style="z-index: 10">去商城看看>></view> <view class="info-btn v12-text-center v12-font-32 v12-mt-3" style="z-index: 10">去商城看看>></view>
</view> </view>
<view v-if="card.isUserReceive === 1" style="z-index: 10; display: flex;flex-direction: column;align-items: center;"> <view v-if="card.isUserReceive === 1 && card.isOverReceive === 0" style="z-index: 10; display: flex;flex-direction: column;align-items: center;">
<view style="width: fit-content;" class="address-btn v12-white-text v12-primary" @click="toOrder"> <view style="width: fit-content;" class="address-btn v12-white-text v12-primary" @click="toOrder">
您已领取礼包去看看>> 您已领取礼包去看看>>
</view> </view>
+2 -2
View File
@@ -290,7 +290,7 @@ export default {
}) })
return { return {
title: '礼笺轻启,礼藏心意', title: '礼笺轻启,礼藏心意',
path: `/pkg_user/views/gift/receive?code=${this.giftKey}&isTravelGroup=${this.isGroupBuy}`, path: `/pkg_user/views/gift/receive?code=${this.giftKey}&isTravelGroup=${this.isGroupBuy ? 1 : 0}`,
imageUrl: this.shareImage imageUrl: this.shareImage
} }
}, },
@@ -577,7 +577,7 @@ export default {
this.giftNotice = res.data.giftCardGiftNotice this.giftNotice = res.data.giftCardGiftNotice
this.templateId = res.data.giftCardTemplates[0].id || '' this.templateId = res.data.giftCardTemplates[0].id || ''
this.orderKey = res.data.orderKey this.orderKey = res.data.orderKey
this.giftImage = res.data.giftCardTemplates[0].id this.giftImage = res.data.giftCardTemplates[0].image
this.goodsInfo = { this.goodsInfo = {
...res.data.travelGroupProduct, ...res.data.travelGroupProduct,
} }
+6 -1
View File
@@ -53,7 +53,7 @@ export default {
}) })
return { return {
title: '礼笺轻启,礼藏心意', title: '礼笺轻启,礼藏心意',
path: `/pkg_user/views/gift/receive?code=${this.giftCard.code}&isTravelGroup=${this.isTravelGroup}`, path: `/pkg_user/views/gift/receive?code=${this.giftCard.code}&isTravelGroup=${this.isTravelGroup ? 1 : 0}`,
imageUrl: this.giftCard.image imageUrl: this.giftCard.image
} }
}, },
@@ -69,10 +69,15 @@ export default {
* 获取旅居团购礼品卡订单详情 * 获取旅居团购礼品卡订单详情
*/ */
getSojoumGroupBuyGiftDetail(code) { getSojoumGroupBuyGiftDetail(code) {
uni.showLoading({
title: '加载中...',
mask: true
})
fetchSojoumGroupBuyGiftDetail({ fetchSojoumGroupBuyGiftDetail({
code: code code: code
}).then(res => { }).then(res => {
this.giftCard = res.data || {} this.giftCard = res.data || {}
uni.hideLoading()
}) })
}, },
+1 -1
View File
@@ -303,7 +303,7 @@ export default {
}) })
return { return {
title: '礼笺轻启,礼藏心意', title: '礼笺轻启,礼藏心意',
path: `/pkg_user/views/gift/receive?code=${this.giftItem.code}&isTravelGroup=${this.giftItem.isTravelGroup}`, path: `/pkg_user/views/gift/receive?code=${this.giftItem.code}&isTravelGroup=${this.giftItem.isTravelGroup ? 1 : 0}`,
imageUrl: this.giftItem.templateInfo.image imageUrl: this.giftItem.templateInfo.image
} }
}, },