From 25ca6799d58cd5ce86eddb68d2aa56237629c76b Mon Sep 17 00:00:00 2001 From: LinCyJang Date: Tue, 21 Oct 2025 23:23:20 +0800 Subject: [PATCH] =?UTF-8?q?Feat=EF=BC=9A=E6=97=85=E5=B1=85=E7=A4=BC?= =?UTF-8?q?=E5=93=81=E4=B8=8B=E5=8D=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkg_user/views/gift/gift.vue | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/pkg_user/views/gift/gift.vue b/pkg_user/views/gift/gift.vue index 75fb084..0e0946a 100644 --- a/pkg_user/views/gift/gift.vue +++ b/pkg_user/views/gift/gift.vue @@ -87,7 +87,7 @@ - + 价格明细 商品总价: @@ -141,7 +141,7 @@ 付款并赠送 - + 再送一份 @@ -460,6 +460,7 @@ export default { templateId: this.templateId, message : this.message || '礼笺轻启,礼藏心意', canTransfer: this.canTransfer ? 1 : 0, + passwordPay: this.payPassword || '', payType: this.payType, } : { orderKey: this.orderKey, @@ -572,11 +573,13 @@ export default { } createGroupBuyGift(params).then(res => { if (res.status === 200) { - this.coverList = res.data.giftCardGiftNotice || [] + this.coverList = res.data.giftCardTemplates || [] + this.giftNotice = res.data.giftCardGiftNotice + this.templateId = res.data.giftCardTemplates[0].id || '' this.orderKey = res.data.orderKey + this.giftImage = res.data.giftCardTemplates[0].id this.goodsInfo = { ...res.data.travelGroupProduct, - } this.giftNotice = res.data.giftCardGiftNotice }