|
@@ -30,6 +30,7 @@
|
|
|
tooltip-effect="dark"
|
|
|
:default-sort="{ prop: 'date', order: 'descending' }"
|
|
|
style="width: 100%"
|
|
|
+ :row-class-name="tableRowClassName"
|
|
|
@selection-change="handleSelectionChange"
|
|
|
>
|
|
|
<!--<el-table-column type="selection" align="center"> </el-table-column>-->
|
|
@@ -312,6 +313,13 @@
|
|
|
return '接单'+ timeout;
|
|
|
}
|
|
|
},
|
|
|
+ tableRowClassName({ row, rowIndex }) {
|
|
|
+ console.log(row.creditStatus, rowIndex);
|
|
|
+ if (row.next_is_timeout == '1') {
|
|
|
+ return 'warning-row';
|
|
|
+ }
|
|
|
+ return '';
|
|
|
+ },
|
|
|
},
|
|
|
};
|
|
|
</script>
|
|
@@ -340,6 +348,9 @@
|
|
|
text-overflow: ellipsis;
|
|
|
white-space: nowrap;
|
|
|
}
|
|
|
+ /deep/.el-table .warning-row {
|
|
|
+ background:oldlace;
|
|
|
+ }
|
|
|
|
|
|
.other {
|
|
|
color: #f36302;
|