From fbcd93088792ae9af86f43e04032455e3ccd970e Mon Sep 17 00:00:00 2001 From: Agent Date: Fri, 3 Apr 2026 01:38:46 +0000 Subject: [PATCH] =?UTF-8?q?fix:=20=E8=AE=A2=E5=8D=95=E5=88=9B=E5=BB=BA?= =?UTF-8?q?=E9=A1=B5=E9=9D=A2=E5=95=86=E5=93=81=E5=90=8D=E7=A7=B0=E8=A7=84?= =?UTF-8?q?=E6=A0=BC=E9=95=BF=E5=AE=BD=E6=94=BE=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/create.vue | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/src/pages/order/create.vue b/src/pages/order/create.vue index 14e44e3..5c0d97e 100644 --- a/src/pages/order/create.vue +++ b/src/pages/order/create.vue @@ -46,9 +46,7 @@ - {{ item.productName }} - {{ item.spec || '-' }} {{ item.length }} x {{ item.width }} x {{ item.quantity }} = {{ (item.length * item.width * item.quantity / 1000000).toFixed(4) }} m² - {{ item.spec || '-' }} + {{ item.productName }}{{ item.spec ? ' ' + item.spec : '' }}{{ item.length }}x{{ item.width }} @@ -578,12 +576,14 @@ export default { .item-info { margin-bottom: 16rpx; + display: flex; + align-items: center; + flex-wrap: wrap; } .item-name { font-size: 28rpx; font-weight: bold; - display: block; color: #333; } @@ -592,6 +592,15 @@ export default { color: #999; } +.item-dims { + font-size: 22rpx; + color: #667eea; + background: #f0f0ff; + padding: 2rpx 8rpx; + border-radius: 4rpx; + margin-left: 8rpx; +} + .item-edit { display: flex; align-items: center;