element ui table表格对某一行进行操作

本文介绍了如何在Element UI的el-table组件中通过row-class-name属性为表格的特定行添加样式,如变色和隐藏。通过判断row.bldname的值,可以分别实现行变色和行隐藏的效果。在实现隐藏时需要注意,样式不应添加scope以确保生效。
摘要由CSDN通过智能技术生成

实现方法:通过设置row-class-name添加样式将某些行进行单独设置。注意分页问题

1.某行变色

 <el-table :data="tableData"
              height="800px"
              :row-class-name="tableRowClassName">
      <el-table-column v-for="(item, index) in tableData[0]"
                       :key="index"
                       :prop="index"
                       :width="index"
                       :label="item">
      </el-table-column>
</el-table>
tableRowClassName({ row, rowIndex }) {
   console.log("row",row)
   console.log("row.bldname",row.bldname)
      if (row.bldname != '建筑物名称') {
        return "warning-row";
      }
      return "";
    },
.el-table .warning-row {
  color: #f56c6c;
}

效果: 

2.某行隐藏,只需要修改 tableRowClassName中的代码,和样式的代码

 tableRowClassName({ row, rowIndex }) {
   console.log("row",row)
   console.log("row.bldname",row.bldname)
      if (row.bldname == '建筑物名称') {
        return "hidden-row";
      }
      return "";
    },
.el-table .hidden-row {
    display: none;
  }

效果:用的=没成功,==成功了. 注意:style 不要加scope  否则不起作用

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值