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} |
` |