Browse Source

2025.02.15 文档收集 - 转量产文档已上传文档背景色优化

java8
yuejiayang 11 months ago
parent
commit
3469e3257e
  1. 7
      src/views/modules/eam/eamProjectPartInfo.vue

7
src/views/modules/eam/eamProjectPartInfo.vue

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

Loading…
Cancel
Save