1.去除element-ui中table 的hover效果

  .el-table--enable-row-hover .el-table__body tr:hover > td {
    background-color: rgba(0, 0, 0, 0) !important;
  }

写一个rgb 色值 替换即可

2.为table的某一行添加样式 表明一种状态

 <el-table
      :data="dataList"
      style="width: 100%; margin-top: 30px"
      border
      stripe
      fit
      empty-text
      @row-click="tableRowClick"
      :row-class-name="tableRowClassName"
      @cell-mouse-enter="cursor"
      :style="cursorPointer"
      v-loading="listLoading"
    ></el-table>

tableRowClassName方法

    // 为table的某一行添加样式 表明一种状态
    tableRowClassName({ row, rowIndex }) {
      // 表示注销
      if (row.statusFlag === 2) {
        return "warning-row";
      }
      return "";
    },

“warning-row”即为要添加的样式类名

GitHub 加速计划 / eleme / element
54.06 K
14.63 K
下载
A Vue.js 2.0 UI Toolkit for Web
最近提交(Master分支:3 个月前 )
c345bb45 7 个月前
a07f3a59 * Update transition.md * Update table.md * Update transition.md * Update table.md * Update transition.md * Update table.md * Update table.md * Update transition.md * Update popover.md 7 个月前
Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐