From a340018a320cfe9a089bf0d8015eaa00997cd7a4 Mon Sep 17 00:00:00 2001
From: huminmin <mac@MacBook-Pro.local>
Date: 星期二, 03 二月 2026 09:17:02 +0800
Subject: [PATCH] 根据是否发货,展示销售台账,生产订单列表表格颜色

---
 src/views/productionManagement/productionOrder/index.vue |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/src/views/productionManagement/productionOrder/index.vue b/src/views/productionManagement/productionOrder/index.vue
index ece5ca6..9a4620f 100644
--- a/src/views/productionManagement/productionOrder/index.vue
+++ b/src/views/productionManagement/productionOrder/index.vue
@@ -239,8 +239,9 @@
 
   // 娣诲姞琛ㄨ绫诲悕鏂规硶
   const tableRowClassName = ({ row }) => {
-    const diff = row.deliveryDaysDiff;
+    if (row.isFh) return '';
 
+    const diff = row.deliveryDaysDiff;
     if (diff === 15) {
       return 'yellow';
     } else if (diff === 10) {

--
Gitblit v1.9.3