diff --git a/packages/shop/groupPurchaseSubmit/index.vue b/packages/shop/groupPurchaseSubmit/index.vue index 7ff4060c..038fc9c6 100644 --- a/packages/shop/groupPurchaseSubmit/index.vue +++ b/packages/shop/groupPurchaseSubmit/index.vue @@ -334,6 +334,8 @@ export default { this.orderList2 = [] this.carList.forEach(item => { + item.commodity_goods_info.commodity_pic = picUrl + item.commodity_goods_info.commodity_pic + const list = item.commodity_goods_info.group_buy_activity_info if (list) { this.orderList2.push(item) @@ -363,7 +365,6 @@ export default { } }, increaseQuantity(item) { - console.log("๐Ÿš€ ~ increaseQuantity ~ item.commodity_goods_info.total_stock:", item.commodity_goods_info.stock_quantity) if (item.commodity_goods_info.total_stock > 0) { if (item.count < item.commodity_goods_info.total_stock) { item.count++; @@ -408,7 +409,6 @@ export default { let total = 0; this.orderList1.forEach(item => { total += item.commodity_goods_info.sales_price * item.count + item.commodity_goods_info.freight; - }); // ๅŠ ่ฟ่ดน return total;