From 6e28dc148e6112bd0d749ffc8ae469fdf277b76f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B5=B5=E6=AF=85?= <1335909236@qq.com> Date: Wed, 17 Sep 2025 09:47:00 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E5=9C=A8=E8=AE=A2=E5=8D=95?= =?UTF-8?q?=E5=88=97=E8=A1=A8=E9=A1=B5=E7=82=B9=E5=87=BB=E7=AB=8B=E5=8D=B3?= =?UTF-8?q?=E6=94=AF=E4=BB=98=E5=90=8E=E5=9C=A8=E6=8F=90=E4=BA=A4=E8=AE=A2?= =?UTF-8?q?=E5=8D=95=E9=A1=B5=E6=B2=A1=E6=9C=89=E8=87=AA=E6=8F=90=E7=82=B9?= =?UTF-8?q?=E7=9A=84bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/myOrders/groupOrders/index.vue | 419 ++++++++++++++++++++++++ packages/myOrders/index/index.vue | 8 +- 2 files changed, 423 insertions(+), 4 deletions(-) create mode 100644 packages/myOrders/groupOrders/index.vue diff --git a/packages/myOrders/groupOrders/index.vue b/packages/myOrders/groupOrders/index.vue new file mode 100644 index 00000000..d855bc76 --- /dev/null +++ b/packages/myOrders/groupOrders/index.vue @@ -0,0 +1,419 @@ + + + \ No newline at end of file diff --git a/packages/myOrders/index/index.vue b/packages/myOrders/index/index.vue index c96a1b97..bd50f118 100644 --- a/packages/myOrders/index/index.vue +++ b/packages/myOrders/index/index.vue @@ -300,7 +300,7 @@ export default { checked: true, commodity_goods_info: { commodity_brief: "", - commodity_id: goods.goods_id, + commodity_id: goods.commodity_id, commodity_pic: goods.commodity_pic, goods_alias: goods.goods_name, goods_carousel: "", @@ -320,10 +320,10 @@ export default { sales_price: goods.sales_price, stock_quantity: goods.stock_quantity }, - commodity_id: goods.goods_id, + commodity_id: goods.commodity_id, count: goods.count, create_time: item.create_time, - goods_id: goods.id, + goods_id: goods.goods_id, group_buy_id: 0, id: goods.id, supplier_id: item.supplier_id, @@ -381,7 +381,7 @@ export default { good.commodity_pic = picUrl + good.commodity_pic; }) }) - this.orderData = res.order_list; + this.orderData = res.order_list.filter(item => item.order_cate == 1); this.getAfterSaleList(); }); },