From 7b24ea86f5f3a83b5eff5519957000c110ecacf0 Mon Sep 17 00:00:00 2001 From: Agent Date: Thu, 2 Apr 2026 11:58:16 +0000 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=95=86=E5=93=81=E5=90=8D=E7=A7=B0?= =?UTF-8?q?=E8=A7=84=E6=A0=BC=E9=95=BF=E5=AE=BD=E6=98=BE=E7=A4=BA=E5=9C=A8?= =?UTF-8?q?=E5=90=8C=E4=B8=80=E8=A1=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/order/detail.vue | 8 ++++++-- src/pages/share/order.vue | 8 ++++++-- 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/src/pages/order/detail.vue b/src/pages/order/detail.vue index 517ce2d..bc7afcd 100644 --- a/src/pages/order/detail.vue +++ b/src/pages/order/detail.vue @@ -47,7 +47,7 @@ :key="index" class="item-row" > - {{ item.productName }}{{ item.productSpec ? ' ' + item.productSpec : '' }}\n{{ item.length || '-' }}x{{ item.width || '-' }} + {{ item.productName }}{{ item.productSpec ? ' ' + item.productSpec : '' }}{{ item.length || '-' }}x{{ item.width || '-' }} {{ calcArea(item) }} {{ item.quantity }} ¥{{ item.price }} @@ -366,7 +366,6 @@ export default { .item-info { flex: 3; - white-space: pre-line; font-size: 24rpx; color: #333; line-height: 1.6; @@ -381,6 +380,11 @@ export default { color: #999; } +.item-dims-text { + color: #666; + margin-left: 8rpx; +} + .item-area { flex: 1.2; text-align: center; diff --git a/src/pages/share/order.vue b/src/pages/share/order.vue index 543e33b..8419323 100644 --- a/src/pages/share/order.vue +++ b/src/pages/share/order.vue @@ -61,7 +61,7 @@ :key="index" class="item-row" > - {{ item.productName }}{{ item.productSpec ? ' ' + item.productSpec : '' }}\n{{ item.length || '-' }}x{{ item.width || '-' }} + {{ item.productName }}{{ item.productSpec ? ' ' + item.productSpec : '' }}{{ item.length || '-' }}x{{ item.width || '-' }} {{ calcArea(item) }} {{ item.quantity }} ¥{{ item.price }} @@ -306,7 +306,6 @@ export default { .item-info { flex: 3; - white-space: pre-line; font-size: 24rpx; color: #333; line-height: 1.6; @@ -321,6 +320,11 @@ export default { color: #999; } +.item-dims-text { + color: #666; + margin-left: 8rpx; +} + .item-area { flex: 1.2; text-align: center;