Fix:4438 【旅居商城小程序】送礼—已领取礼包的用户查看礼包链接时应进入礼包已领取界面

This commit is contained in:
linxi
2025-11-12 17:22:33 +08:00
parent a2805ca58e
commit 7cc2be3536
+3
View File
@@ -69,6 +69,7 @@ export default {
* 获取旅居团购礼品卡订单详情 * 获取旅居团购礼品卡订单详情
*/ */
getSojoumGroupBuyGiftDetail(code) { getSojoumGroupBuyGiftDetail(code) {
this.loading = true
uni.showLoading({ uni.showLoading({
title: '加载中...', title: '加载中...',
mask: true mask: true
@@ -87,6 +88,8 @@ export default {
uni.reLaunch({ url: '/pkg_user/views/gift/receiveDone?obj=' + JSON.stringify(obj) }) uni.reLaunch({ url: '/pkg_user/views/gift/receiveDone?obj=' + JSON.stringify(obj) })
} }
uni.hideLoading() uni.hideLoading()
}).finally(() => {
this.loading = false
}) })
}, },