赞
踩
在<el-table>中加 :row-class-name="tableRowClassName"
- methods: {
- // 改变斑马线的颜色
- tableRowClassName({row, rowIndex}) {
- if (rowIndex % 2 === 0 ) {
- return 'row-style';
- }
- return '';
- },
- }
-
-
-
- <style scoped>
- ::v-deep .el-table .row-style {
- background: #f7fdfd;
- }
- <style>

Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。