From 1acf1f8052d4d2e131a698bd393e69a4393b705d Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E8=B5=B5=E6=AF=85?= <1335909236@qq.com>
Date: Thu, 18 Sep 2025 16:30:01 +0800
Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E8=87=AA=E6=8F=90=E7=82=B9?=
=?UTF-8?q?=E9=83=A8=E5=88=86=E7=9A=84=E4=BC=A0=E5=80=BC=E9=80=BB=E8=BE=91?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
packages/shop/groupPurchaseSubmit/index.vue | 3 ++-
packages/shop/ztLocation/index.vue | 3 ++-
2 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/packages/shop/groupPurchaseSubmit/index.vue b/packages/shop/groupPurchaseSubmit/index.vue
index 3a8ae57c..5fbaec50 100644
--- a/packages/shop/groupPurchaseSubmit/index.vue
+++ b/packages/shop/groupPurchaseSubmit/index.vue
@@ -43,7 +43,7 @@
¥{{ item.commodity_goods_info.sales_price }}/{{
item.commodity_goods_info.goods_unit
- }}
+ }}
运费 ¥{{
item.commodity_goods_info.freight }}
@@ -617,6 +617,7 @@ export default {
receiving_name: ztAddress.name || '',
receiving_phone: ztAddress.phone || '',
receiving_address: ztAddress.address || '',
+ merchant_id: ztAddress.address_id,
group_buy_activity_id: firstItem.commodity_goods_info.group_buy_activity_id,
goods_and_count: group.map(item => {
const activityInfo = item.commodity_goods_info.group_buy_activity_info;
diff --git a/packages/shop/ztLocation/index.vue b/packages/shop/ztLocation/index.vue
index 740ac76a..92fb8755 100644
--- a/packages/shop/ztLocation/index.vue
+++ b/packages/shop/ztLocation/index.vue
@@ -44,9 +44,10 @@ export default {
const res = await request(apiArr.groupBuyAddress, 'POST', params)
// 遍历地址数组并正确赋值
res.self_pickup_address_list[0].address.forEach(item => {
- const [address, phone, name] = item.split(' ');
+ const [id,address, phone, name] = item.split(' ');
this.locationList.push({
id: supplier_id,
+ address_id: id,
name: name || '',
phone: phone || '',
address: address || ''