From bf3a18cb4ba4815988a9c87e4a0fce181553cd25 Mon Sep 17 00:00:00 2001 From: lifizer <913626195@qq.com> Date: Thu, 16 Apr 2026 15:39:14 +0800 Subject: [PATCH] =?UTF-8?q?Refactor(=E4=BA=91=E7=81=B5AI):=E8=AE=A2?= =?UTF-8?q?=E5=8D=95=E5=88=97=E8=A1=A8=E6=95=B0=E6=8D=AE=E5=AF=B9=E6=8E=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- aiChat/components/orderItem.vue | 70 +++++++++++++++++---------------- utils/index.js | 2 +- 2 files changed, 38 insertions(+), 34 deletions(-) diff --git a/aiChat/components/orderItem.vue b/aiChat/components/orderItem.vue index 2e9b37f..9df2b21 100644 --- a/aiChat/components/orderItem.vue +++ b/aiChat/components/orderItem.vue @@ -10,7 +10,7 @@ class="icon" mode="widthFix" /> - {{ item.shopName }} + {{ item.merName }} {{ item.orderId }} @@ -20,35 +20,41 @@ {{ item.statusName }} - - - - - - - {{ item.name }} + + + + - - {{ item.attr || '' }} + + + {{ cartItem.productInfo.storeName }} + + + 规格:{{ cartItem.productInfo.attrInfo.sku || '' }} + - - - - {{ item.price }} - - - x{{ item.num }} + + + ¥{{ cartItem.truePrice }} + + + x{{ cartItem.cartNum }} + - {{ item.createTime }} + {{ formatDateTime(item.createTime) }} 共{{ item.totalNum }}件商品, @@ -65,6 +71,7 @@