::v-deep .el-table .rowColor{background:#f3c298; } 2、置好背景色后发现,每次鼠标移入到变色的行上面,背景色就会变成灰色,要求是移入后也应该是变过色的背景色 tableCellstyle(row, rowIndex) {if(row.row.name == 'test') {return'background: #f3c298'}return''},...
1 打开一个vue文件,插入一个el-table的组件,然后设置表格显示内容为日期、姓名、地址。如图 2 在el-table标签上添加row-class-name属性,设置值为tableRowClassName。如图 3 设置tableRowClassName方法返回一个隔行背景色为浅黄色的yellow类。如图 4 使用css设置表格orange的背景色为浅黄色。如图 5 保存vue文件后...
el-table点击行,改变行的背景色 为了防止污染自组件的table,row,可以在::v-deep{}外层再加一个class ::v-deep {.current-row{td{background-color:rgba(0,191,255, .35)!important; } } } https://blog.csdn.net/LH2HA3/article/details/127888560...
1. row-class-name:行的 className 的回调方法,也可以使用字符串为所有行设置一个固定的 className。 然后row-class-name绑定的样式实现 tableRowClassName({ row, rowIndex }) { if (rowIndex % 2 == 1) { return "statistics-warning-row"; } else { return ""; } }, 1....
<style lang="scss" scoped> //表格内容颜色 ::v-deep .el-table__body tbody tr { background-color: #fff; } ::v-deep .el-table__header-wrapper thead th { background-color: rgb(248, 248, 24…
handleRowClick(row, column, event) {//点击行触发,选中或不选中复选框 this.$refs.refTable.toggleRowSelection(row); }, tableRowClassName({ row, rowIndex }) {//改变某行的背景色 if (row.date == "2016-05-04" ) { return "freeze"; ...
el-table行的颜色可以通过设置CSS样式来修改。可以使用`row-class-name`属性来为行添加类名,然后在CSS中为相应的类名设置颜色样式。 例如,在el-table中设置`row-class-name`为"table-row",然后在CSS中定义"table-row"类名的颜色样式: ```html <el-table :data="tableData" row-class-name="table-row">...
el-table 中有现成的隔行换色功能,只要增加 stripe 属性即可。但是如果有单元格合并的话,这个属性就不可用了。这时候我们就需要动点小心思了。 基于相同字段进行合并 如果是基于表头中的某一列,具有相同值进行合并的话,那么只需计算一下相同字段出现的次数并记录下来,通过自定义一个属性 isShow 来实现隔行换色功...
>>> .el-table .el-table__body tr.el-table__row.current-row td, .el-table__body tr.current-row>td, .el-table__body tr.hover-row.current-row>td, .el-table__body tr.hover-row.el-table__row.current-row>td, .el-table__body tr.hover-row.el-table__row>td, .el-table__body...
el-table, ::v-deep .el-table__expanded-cell { background-color: transparent !important; } /* 表格内背景颜色 */ ::v-deep .el-table th, ::v-deep .el-table tr, ::v-deep .el-table td { background-color: transparent !important; border: 0; //去除表格 } /*去除底边框*/ ::v-...