From 3469e3257e74482ab2c7111435bf97f7cafbad71 Mon Sep 17 00:00:00 2001 From: yuejiayang <146344614+YangLei105@users.noreply.github.com> Date: Sat, 15 Feb 2025 13:49:06 +0800 Subject: [PATCH] =?UTF-8?q?2025.02.15=20=E6=96=87=E6=A1=A3=E6=94=B6?= =?UTF-8?q?=E9=9B=86=20-=20=E8=BD=AC=E9=87=8F=E4=BA=A7=E6=96=87=E6=A1=A3?= =?UTF-8?q?=E5=B7=B2=E4=B8=8A=E4=BC=A0=E6=96=87=E6=A1=A3=E8=83=8C=E6=99=AF?= =?UTF-8?q?=E8=89=B2=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/modules/eam/eamProjectPartInfo.vue | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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; }