From 385b5b2ac003fe417567c1aa10b650497aa403f2 Mon Sep 17 00:00:00 2001 From: zzh Date: Mon, 18 May 2026 10:42:10 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AE=A2=E6=88=B7=E8=AE=A2=E5=8D=95=E7=AE=A1?= =?UTF-8?q?=E7=90=86=E4=BF=AE=E5=A4=8D=E5=BF=AB=E9=80=9F=E9=80=89=E6=8B=A9?= =?UTF-8?q?=E6=A0=BC=E5=BC=8F=E9=97=AE=E9=A2=98=EF=BC=8C=E5=A2=9E=E5=8A=A0?= =?UTF-8?q?=E8=A7=84=E6=A0=BC=E5=9E=8B=E5=8F=B7=E5=92=8C=E6=9C=BA=E5=9E=8B?= =?UTF-8?q?=E7=AE=80=E7=A7=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/js/components/customer-order.js | 44 +++++++++++++++++------- server/app.py | 29 ++++++++++++---- 2 files changed, 54 insertions(+), 19 deletions(-) diff --git a/frontend/js/components/customer-order.js b/frontend/js/components/customer-order.js index f7e2cee..ea5e216 100755 --- a/frontend/js/components/customer-order.js +++ b/frontend/js/components/customer-order.js @@ -128,6 +128,8 @@ 订单编号 客户名称 物料 + 规格型号 + 机型简称 订单数量 已发货 未交订单 @@ -257,7 +259,7 @@ } if (!data.list || data.list.length === 0) { - tbody.innerHTML = '暂无数据'; + tbody.innerHTML = '暂无数据'; return; } @@ -274,6 +276,8 @@ ${order.order_no || '—'} ${order.customer_name || '—'} ${order.material || '—'} + ${order.material_spec || '—'} + ${order.model_name || '—'} ${order.quantity || 0} ${shippedQty} `