当前位置: 首页 > Web前端 > vue.js

当elementui点击表格的每一行时,它会改变颜色,当有固定栏目时,

时间:2023-03-31 16:58:07 vue.js

1。html代码@row-click="rowClick":row-class-name="tableRowClassName":row-style="selectedHighlight"2。js代码//解决表格有固定列时,行会变色的问题,点击,鼠标悬停},//解决表格有固定列时行会变色的问题,点击鼠标悬停selectedHighlight({row,rowIndex}){if(this.getIndex===rowIndex){return{'background-颜色':'#ffeecf!important'};}if(rowIndex%2==0){return{'background-color':'#F9F9F9'}}},//解决当表格有固定列时,行会变色的问题clickedorhoveredoverthemouse问题rowClick(row){this.getIndex=row.index;},3.css代码/当表格有固定列时,鼠标悬停时颜色会发生变化/.el-table__body.el-table__row.hover-rowtd{背景颜色:#FFF9EE!重要;}