美文网首页
element ui 的el-table 表格 某一条线 变颜色

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

作者: 偶头像超凶 | 来源:发表于2024-05-05 17:28 被阅读0次
    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;
    }
    

    相关文章

      网友评论

          本文标题:element ui 的el-table 表格 某一条线 变颜色

          本文链接:https://www.haomeiwen.com/subject/gzbkfjtx.html