diff --git a/src/views/modules/eam/eamProjectPartInfo.vue b/src/views/modules/eam/eamProjectPartInfo.vue index 6480235..fc487b0 100644 --- a/src/views/modules/eam/eamProjectPartInfo.vue +++ b/src/views/modules/eam/eamProjectPartInfo.vue @@ -5594,8 +5594,10 @@ import {updateColumnSize} from "../../../api/table"; }) }, tableRowClassName ({row, rowIndex}) { - if (row.status === '正式量产' || row.uploadedFlag === 'Y') { + if (row.status === '正式量产') { return 'row-production' + } else if (row.uploadedFlag === 'Y') { + return 'row-production2' } return '' }, @@ -5616,6 +5618,9 @@ import {updateColumnSize} from "../../../api/table"; .row-production { background-color: rgb(185, 244, 250) !important; } +.row-production2 { + background-color: rgb(253, 240, 225) !important; +} .el-tabs__nav { margin-left: 0 !important; }