當(dāng)前位置:首頁 > IT技術(shù) > 其他 > 正文

el-table中奇偶行背景色顯示不同的顏色
2022-09-06 22:53:13


默認(rèn)樣式

el-table中奇偶行背景色顯示不同的顏色_背景色


深色主題

el-table中奇偶行背景色顯示不同的顏色_背景色_02

el-table中奇偶行背景色顯示不同的顏色_css_03

border
ref="singleTable"
highlight-current-row
@current-change="handleCurrentChange"
:row-class-name="tableRowClassName"
:header-cell-style="{background:'#004d8c',color:'#FFFFFF'}"

事件方法

(row) {
this.$refs.singleTable.setCurrentRow(row);
},
handleCurrentChange(val) {
this.currentRow = val;
},
tableRowClassName({row, rowIndex}) {
if ((rowIndex + 1) % 2 === 0) {
return 'success-row';
}
return '';
},

樣式

<style>
.el-table .success-row {
background: #DFEAF5;
}
</style>

el-table中奇偶行背景色顯示不同的顏色_f5_04


本文摘自 :https://blog.51cto.com/g

開通會員,享受整站包年服務(wù)立即開通 >