From 740a61ac30e319dc3354859f3168c611bd89a955 Mon Sep 17 00:00:00 2001
From: chenlu <1320612696@qq.com>
Date: 星期五, 27 十二月 2024 07:44:01 +0800
Subject: [PATCH] Merge branch 'master' of http://10.153.19.25:10105/r/ERP_override

---
 north-glass-erp/northglass-erp/src/components/sd/order/OrderProcess.vue |   11 ++++++++++-
 1 files changed, 10 insertions(+), 1 deletions(-)

diff --git a/north-glass-erp/northglass-erp/src/components/sd/order/OrderProcess.vue b/north-glass-erp/northglass-erp/src/components/sd/order/OrderProcess.vue
index 6c30fd9..bef4ae0 100644
--- a/north-glass-erp/northglass-erp/src/components/sd/order/OrderProcess.vue
+++ b/north-glass-erp/northglass-erp/src/components/sd/order/OrderProcess.vue
@@ -41,7 +41,13 @@
   toolbarConfig: {
     zoom: true,
     custom: true
-  }
+  },
+  cellClassName ({ row, column,columnIndex})  {
+    if (columnIndex>10 && row.quantity*1 === row.reportWorkQuantity[column.title]*1){
+        return 'row-green'
+    }
+    return null
+  },
 
 
 })
@@ -144,5 +150,8 @@
 </template>
 
 <style scoped>
+::v-deep(.vxe-grid .vxe-body--column.row-green) {
+  background-color: #D5EAFF;
+}
 
 </style>
\ No newline at end of file

--
Gitblit v1.8.0