From 627485176e8865e438281cd1a247c33299ff660f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B5=B5=E6=AF=85?= <1335909236@qq.com> Date: Sat, 8 Nov 2025 14:30:12 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=95=86=E5=93=81=E8=AF=A6?= =?UTF-8?q?=E6=83=85=E9=A1=B5=E5=B7=B2=E5=94=AE=E9=83=A8=E5=88=86=E7=9A=84?= =?UTF-8?q?bug=20=E4=BC=98=E5=8C=96=E4=BB=A3=E7=A0=81,=E5=8F=96=E6=B6=88?= =?UTF-8?q?=E6=8E=A7=E5=88=B6=E5=8F=B0=E6=8A=A5=E9=94=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/advertising/goodsDetail/index.vue | 6 +++--- packages/shop/groupPurchaseDetail/index.vue | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/packages/advertising/goodsDetail/index.vue b/packages/advertising/goodsDetail/index.vue index c28c0fbd..8964a8a0 100644 --- a/packages/advertising/goodsDetail/index.vue +++ b/packages/advertising/goodsDetail/index.vue @@ -727,14 +727,14 @@ export default { // 购买记录 getBuyRecord() { const params = { - activity_id: 47, - goods_id: this.id + activity_id: this.groupById, + goods_id: this.itemObj.id, } request(apiArr2.groupBuyRecord, 'POST', params).then(res => { const record = res.group_buy_record.map(item => { return { ...item, - avatar: picture + item.avatar + avatar: picUrl + item.avatar } }) this.purchaseRecords = record diff --git a/packages/shop/groupPurchaseDetail/index.vue b/packages/shop/groupPurchaseDetail/index.vue index 047126ca..d7ec5cf2 100644 --- a/packages/shop/groupPurchaseDetail/index.vue +++ b/packages/shop/groupPurchaseDetail/index.vue @@ -770,14 +770,14 @@ export default { // 购买记录 getBuyRecord() { const params = { - activity_id: 47, - goods_id: this.id + activity_id: this.groupById, + goods_id: this.itemObj.id, } request(apiArr2.groupBuyRecord, 'POST', params).then(res => { const record = res.group_buy_record.map(item => { return { ...item, - avatar: picture + item.avatar + avatar: picUrl + item.avatar } }) this.purchaseRecords = record