From 3fe8c80696b84085cf7e4498a67e2efc9ab3271d Mon Sep 17 00:00:00 2001 From: Agent Date: Thu, 2 Apr 2026 10:04:01 +0000 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=95=86=E5=93=81=E5=90=8D=E7=A7=B0?= =?UTF-8?q?=E5=92=8C=E8=A7=84=E6=A0=BC=E5=90=8C=E4=B8=80=E8=A1=8C=E6=98=BE?= =?UTF-8?q?=E7=A4=BA=EF=BC=8C=E4=B8=8D=E5=90=8C=E9=A2=9C=E8=89=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/order/detail.vue | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/src/pages/order/detail.vue b/src/pages/order/detail.vue index e8ccaf1..a066cc4 100644 --- a/src/pages/order/detail.vue +++ b/src/pages/order/detail.vue @@ -47,7 +47,7 @@ :key="index" class="item-row" > - {{ item.productName }}\n{{ item.productSpec || '-' }}\n{{ item.length || '-' }}x{{ item.width || '-' }} + {{ item.productName }}{{ item.productSpec ? ' ' + item.productSpec : '' }}\n{{ item.length || '-' }}x{{ item.width || '-' }} {{ calcArea(item) }} {{ item.quantity }} ¥{{ item.price }} @@ -373,6 +373,15 @@ export default { line-height: 1.6; } +.item-name-text { + color: #333; + font-weight: 500; +} + +.item-spec-text { + color: #999; +} + .item-area { flex: 1.2; text-align: center;