From 585fb0bbd4a7bc7f8f333ecba7c5fecd2ee5cbc2 Mon Sep 17 00:00:00 2001
From: qushaowei <qushaowei@163.com>
Date: 星期四, 28 三月 2024 09:46:44 +0800
Subject: [PATCH] Merge branch 'master' of http://117.34.109.166:18448/r/vue_mdc_430 into develop

---
 src/views/eam/ABC/ABCAssessmentList.vue |   18 +++++++++++++++---
 1 files changed, 15 insertions(+), 3 deletions(-)

diff --git a/src/views/eam/ABC/ABCAssessmentList.vue b/src/views/eam/ABC/ABCAssessmentList.vue
index 6acfc1e..10931f8 100644
--- a/src/views/eam/ABC/ABCAssessmentList.vue
+++ b/src/views/eam/ABC/ABCAssessmentList.vue
@@ -35,6 +35,7 @@
         :columns="columns"
         :dataSource="dataSource"
         :pagination="ipagination"
+        :rowClassName="tableRowClass"
         :loading="loading"
         @change="handleTableChange">
 
@@ -74,6 +75,7 @@
 <script>
 
   import { JeecgListMixin } from '@/mixins/JeecgListMixin'
+  import '@/assets/less/TableExpand.less'
 
   export default {
     name: "ABCAssessmentList",
@@ -172,7 +174,7 @@
           {
             title:'鏃ф爣璇�',
             align:"center",
-            dataIndex: 'equipmentImportanceId_dictText',
+            dataIndex: 'oldStandard_dictText',
             width:200
           },
           {
@@ -205,11 +207,21 @@
         this.dataSource=[]
         this.selectedRowKeys=[]
         this.ipagination.current = 1
+      },
+      tableRowClass(record, index) {
+      if (record.oldStandard!==record.finalStandard) {
+          return 'primary'
       }
+      
+    },
 
     }
   }
 </script>
-<style scoped>
-  @import '~@assets/less/common.less'
+<style lang="less" scoped>
+  @import '~@assets/less/common.less';
+  /deep/.primary {
+  color: rgb(0, 115, 255);
+  font-weight: bold;
+}
 </style>

--
Gitblit v1.9.3