From 49d5dd38a11815fbcf5a36f1ac302ce75053efbf Mon Sep 17 00:00:00 2001 From: zzh Date: Thu, 26 Mar 2026 10:53:54 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E5=AE=A2=E6=88=B7=E8=AE=A2?= =?UTF-8?q?=E5=8D=95=E6=9C=AA=E4=BA=A4=E8=AE=A2=E5=8D=95=E5=8A=9F=E8=83=BD?= 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 | 46 ++++++++++++++++++++++-- 2 files changed, 82 insertions(+), 8 deletions(-) diff --git a/frontend/js/components/customer-order.js b/frontend/js/components/customer-order.js index 81f9647..cb7b1c4 100755 --- a/frontend/js/components/customer-order.js +++ b/frontend/js/components/customer-order.js @@ -12,6 +12,11 @@ height: 100vh; } + @keyframes spin { + from { transform: rotate(0deg); } + to { transform: rotate(360deg); } + } + #customer-order-page { display: flex; flex-direction: column; @@ -88,8 +93,14 @@