From b62c62c6e069c15e0bd6f90569fa5cbe6a4a95a1 Mon Sep 17 00:00:00 2001 From: Agent Date: Wed, 1 Apr 2026 16:25:41 +0000 Subject: [PATCH] =?UTF-8?q?feat:=20=E8=AE=A2=E5=8D=95=E5=95=86=E5=93=81?= =?UTF-8?q?=E6=98=8E=E7=BB=86=E6=98=BE=E7=A4=BA=E9=A2=9C=E8=89=B2=E9=95=BF?= =?UTF-8?q?=E5=BA=A6=E5=AE=BD=E9=AB=98=E5=BA=A6=E6=95=B0=E9=87=8F=E6=80=BB?= =?UTF-8?q?=E9=9D=A2=E9=9D=A2=E7=A7=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/order/create.vue | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/pages/order/create.vue b/src/pages/order/create.vue index f989e24..410d939 100644 --- a/src/pages/order/create.vue +++ b/src/pages/order/create.vue @@ -47,7 +47,8 @@ {{ item.productName }} - {{ item.spec || '-' }} + {{ item.spec || '-' }} {{ item.length }} x {{ item.width }} x {{ item.quantity }} = {{ (item.length * item.width * item.quantity / 1000000).toFixed(4) }} m² + {{ item.spec || '-' }} @@ -335,6 +336,9 @@ export default { spec: product.spec, unit: product.unit, price: product.price, + length: product.length || '', + width: product.width || '', + area: product.area || '', quantity: 1 }) this.calcAmount()