赞
踩
【elementui表格】隔行变色之自定义带斑马纹样式的表格
比如你想实现elementui表格隔行变色的样式,官方文档里面有介绍stripe属性可以属性,但是如果你想自定义设置这个斑马纹的样式,那你就可以参考如下代码
elementui官方文档里面 stripe 属性的使用如下:
<el-table
:data="tableData"
stripe
border
style="width: 100%">
<el-table-column
v-for="(column,index) in tableHeader"
:prop="column['prop']"
:label="column['label']"
:width="column['width']">
</el-table-column>
</el-table>
data(){ return{ tableData: [{ date: '2016-05-02', name: '王小虎', address: '上海市普陀区金沙江路 1518 弄' }, { date: '2016-05-04', name: '王小虎', address: '上海市普陀区金沙江路 1517 弄' }, { date: '2016-05-01', name: '王小虎', address: '上海市普陀区金沙江路 1519 弄' }, { date: '2016-05-03', name: '王小虎', address: '上海市普陀区金沙江路 1516 弄' }], tableHeader:[ { "label":"日期", "prop":"date", "width":180 }, { "label":"姓名", "prop":"name", "width":180 }, { "label":"地址", "prop":"address", "width":'' }, ], } }
去掉 el-table 上的 stripe属性,然后添加上 :row-class-name=“tableRowClassName”
<el-table
:data="tableData"
:row-class-name="tableRowClassName"
border
style="width: 100%">
<el-table-column
v-for="(column,index) in tableHeader"
:prop="column['prop']"
:label="column['label']"
:width="column['width']">
</el-table-column>
</el-table>
methods:{
tableRowClassName({ row, rowIndex }) {
if (rowIndex % 2 === 1) {
return 'custom_stripe' //自定义样式的类名
} else {
return ''
}
},
}
::v-deep .custom_stripe {
background-color:#f191f5;
color:#1f0505;
}
备注:希望能帮到大家,实际使用过程中如有错误,欢迎评论区评论指正!
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。