From d9881a50c1789664270d5f71aa6ecd289e964765 Mon Sep 17 00:00:00 2001 From: Agent Date: Wed, 1 Apr 2026 15:30:50 +0000 Subject: [PATCH] =?UTF-8?q?feat:=20=E5=95=86=E5=93=81=E5=8D=A1=E7=89=87?= =?UTF-8?q?=E9=A2=9C=E8=89=B2=E5=8D=95=E4=BD=8D=E6=98=BE=E7=A4=BA=E4=B8=80?= =?UTF-8?q?=E8=A1=8C=EF=BC=8C=E6=9C=89=E9=9D=A2=E7=A7=AF=E6=97=B6=E5=8F=A6?= =?UTF-8?q?=E8=B5=B7=E4=B8=80=E8=A1=8C=E6=98=BE=E7=A4=BA=E8=A7=84=E6=A0=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/product/manage.vue | 34 +++++++++++++++++++++++++++++++--- 1 file changed, 31 insertions(+), 3 deletions(-) diff --git a/src/pages/product/manage.vue b/src/pages/product/manage.vue index eb86582..f74e6fd 100644 --- a/src/pages/product/manage.vue +++ b/src/pages/product/manage.vue @@ -38,10 +38,15 @@ {{ item.name }} {{ item.categoryName }} - {{ item.spec || '-' }} + + {{ item.spec || '-' }} + /{{ item.unit }} + + + 规格:{{ item.length }} x {{ item.width }} = {{ item.area }} m² + ¥{{ item.price }} - /{{ item.unit }} @@ -474,10 +479,33 @@ export default { .product-spec { font-size: 24rpx; color: #999; - margin-top: 8rpx; display: block; } +.product-row { + display: flex; + align-items: center; + margin-top: 8rpx; +} + +.product-unit { + color: #999; + font-size: 24rpx; + margin-left: 4rpx; +} + +.product-spec-row { + margin-top: 8rpx; +} + +.spec-text { + font-size: 24rpx; + color: #666; + background: #f5f5f5; + padding: 4rpx 12rpx; + border-radius: 4rpx; +} + .product-price { margin-top: 12rpx; }