This commit is contained in:
linfso 2024-09-19 08:29:29 +08:00
parent 951688ab63
commit 25315dbfb0
3 changed files with 14 additions and 4 deletions

View File

@ -739,9 +739,9 @@ export default {
tableRowClassName({row, rowIndex}) {
// if (row.waybillDetail.realFee!=row.waybillDetail.freight ) {
// return {"background-color": "#03a9f4 !important"};
// }
if (row.waybillDetail.realFee!=row.waybillDetail.freight ) {
return {"background-color": "#03a9f4 !important"};
}
if (row.blConfirmCenter=='0' ) {
return {};
@ -756,7 +756,7 @@ export default {
return {"color": "red !important"}
}
return '';
return {};
},
/** 查询结算子账单列表 */

View File

@ -833,6 +833,11 @@ export default {
tableRowClassName({row, rowIndex}) {
if (row.waybillDetail.realFee!=row.waybillDetail.freight ) {
return {"background-color": "#03a9f4 !important"};
}
if (row.blConfirmCenter=='0') {
return {};
}

View File

@ -754,6 +754,11 @@ export default {
},
tableRowClassName({row, rowIndex}) {
if (row.waybillDetail.realFee!=row.waybillDetail.freight ) {
return {"background-color": "#03a9f4 !important"};
}
if (row.blConfirmCenter=='0') {
return {};
}