{{ scope.$index + 1 + pageSize * (currentPage - 1) }} methods: { tableClassNameRow(row, rowIndex) { console.log(row) if (row){ if (row.isFinished != null || row.isReceived != null ){ return 'is-finished-filled'; }else { return ''; } } }, ...其他方法 }
.is-finished-filled { background-color: #07e56c !important; /* 高亮颜色,可以根据需求自定义 */ font-weight: bold; /* 另外一种可能的高亮方式 */ }
2、效果图
相关内容