From 0500d3e688843cd74d4721315551c62d521c241a Mon Sep 17 00:00:00 2001 From: Agent Date: Wed, 1 Apr 2026 15:48:40 +0000 Subject: [PATCH] =?UTF-8?q?feat:=20=E9=80=89=E6=8B=A9=E5=95=86=E5=93=81?= =?UTF-8?q?=E9=A1=B5=E9=9D=A2=E5=8D=A1=E7=89=87=E6=98=BE=E7=A4=BA=E9=95=BF?= =?UTF-8?q?=E5=AE=BD=E9=9D=A2=E7=A7=AF=E4=B8=8E=E9=A2=9C=E8=89=B2=E5=90=8C?= =?UTF-8?q?=E4=B8=80=E8=A1=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/product/select.vue | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/src/pages/product/select.vue b/src/pages/product/select.vue index 13251aa..b37a3e2 100644 --- a/src/pages/product/select.vue +++ b/src/pages/product/select.vue @@ -30,7 +30,10 @@ {{ item.name }} - {{ item.spec || '-' }} + + {{ item.spec || '-' }} + {{ item.length }} x {{ item.width }} = {{ item.area }} m² + ¥{{ item.price }} @@ -278,6 +281,21 @@ export default { color: #999; } +.product-row { + display: flex; + align-items: center; + flex-wrap: wrap; + gap: 8rpx; +} + +.product-size { + font-size: 22rpx; + color: #667eea; + background: #f0f0ff; + padding: 2rpx 8rpx; + border-radius: 4rpx; +} + .product-price { text-align: right; }