From 7cc2be3536b9d51b6382f7c901316cd8a734cdaf Mon Sep 17 00:00:00 2001 From: linxi <957440651@qq.com> Date: Wed, 12 Nov 2025 17:22:33 +0800 Subject: [PATCH] =?UTF-8?q?Fix=EF=BC=9A4438=20=E3=80=90=E6=97=85=E5=B1=85?= =?UTF-8?q?=E5=95=86=E5=9F=8E=E5=B0=8F=E7=A8=8B=E5=BA=8F=E3=80=91=E9=80=81?= =?UTF-8?q?=E7=A4=BC=E2=80=94=E5=B7=B2=E9=A2=86=E5=8F=96=E7=A4=BC=E5=8C=85?= =?UTF-8?q?=E7=9A=84=E7=94=A8=E6=88=B7=E6=9F=A5=E7=9C=8B=E7=A4=BC=E5=8C=85?= =?UTF-8?q?=E9=93=BE=E6=8E=A5=E6=97=B6=E5=BA=94=E8=BF=9B=E5=85=A5=E7=A4=BC?= =?UTF-8?q?=E5=8C=85=E5=B7=B2=E9=A2=86=E5=8F=96=E7=95=8C=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkg_user/views/gift/receive.vue | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkg_user/views/gift/receive.vue b/pkg_user/views/gift/receive.vue index a3fdcc0..cbc7807 100644 --- a/pkg_user/views/gift/receive.vue +++ b/pkg_user/views/gift/receive.vue @@ -69,6 +69,7 @@ export default { * 获取旅居团购礼品卡订单详情 */ getSojoumGroupBuyGiftDetail(code) { + this.loading = true uni.showLoading({ title: '加载中...', mask: true @@ -87,6 +88,8 @@ export default { uni.reLaunch({ url: '/pkg_user/views/gift/receiveDone?obj=' + JSON.stringify(obj) }) } uni.hideLoading() + }).finally(() => { + this.loading = false }) },