vue element框架,table组件给指定行添加高亮效果

// 组件
<el-table
      :data="userList"
      :row-class-name="tableRowClassName" // row-class-name是一个回调函数,返回值是对应行的class名
    >
      <el-table-column type="selection"></el-table-column>
</el-table
// 回调函数
tableRowClassName({ row, rowIndex }) {
      console.log(rowIndex) // 每一行的索引
      if (rowIndex === 1) {
        return 'warning-row'
      }
      return ''
},
// css样式
.el-table .warning-row {
	background: #aaa !important;
}

.el-table .warning-row:hover>td {
	background: #bbb !important;
}
Logo

前往低代码交流专区

更多推荐