element ui 的el-table 表格 某一条线 变颜色

image.png
说明一下,我不想写过多的字段,所以就省略了
主要看
:cell-class-name="tableCellClassName"
:header-cell-class-name="tableCellClassName" 

和
css 的 ::v-deep

最后,如果是嵌套表格,那就是挨着的都要写上
<el-table
      :data="tableData"
      style="width: 100%"
      :cell-class-name="tableCellClassName"
      :header-cell-class-name="tableCellClassName"
    >
</el-table>
tableCellClassName({ column }) {
      if (column.label == "总数量" || column.label == "法人/个体" || column.label == "总计" || column.label == "其他") {
        console.log('column.label >>', column.label )
        return 'custom-border-color'
      }
      return '';
    }
::v-deep .custom-border-color {
  border-right: 3px solid #2e7bff !important;
}
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容