element el-table表格表头某一列表头字段修改颜色

需求:

1 使用 :header-cell-class-name="addClass" 属性

2 根据显示条件 在redText,whiteText 中设置你想要添加的必填表头index

3.根据条件修改文字样式

完整代码

html 复制代码
<el-table ref="tableRef" :cell-style="{ color: '#FFF', background: '#333' }"
      :header-cell-style="{ background: '#333' }" 
      :header-cell-class-name="addClass" 
      row-key="id" 
      :data="tableData"
      style="width: 100%" 
      :default-sort="{ prop: 'barcode.putInDate', order: 'descending' }" 
      @select="select"
      @select-all="selectAll" @sort-change="sortChange" :tree-props="{
        children: 'children',
        hasChildren: 'hasChildren',
      } ">
 </el-table>
javascript 复制代码
  methods: {
    addClass({ row, rowIndex, column, columnIndex }) {
      if (columnIndex == 2) {
        return "redText";
      } else {
        return 'whiteText'
      }
    },
 }
css 复制代码
<style rel="stylesheet/scss" lang="scss" scoped>
::v-deep .el-table__header-wrapper th.redText {
  color: red;
}
::v-deep .el-table__header-wrapper th.whiteText {
  color: #fff;
}
</style>

实现


参考链接https://blog.csdn.net/weixin_47438917/article/details/127262354

相关推荐
m0_748239635 分钟前
怎样正确做 Web 应用的压力测试?
前端·压力测试
2401_8576226617 分钟前
“校园疫情防控的技术支持”:疫情管控系统的实现与评估
java·数据库·vue.js·php·ux
余生H34 分钟前
前端Python应用指南(六)构建RESTful API:使用Flask和Django实现用户认证与授权
前端·python·restful
Ares码农人生34 分钟前
Vue.js 高级组件开发:设计模式与实践
vue.js
qlj2241 小时前
react-native键盘遮盖底部输入框问题修复
javascript·react native·react.js
GISer_Jing1 小时前
Javascript数据结构常见面试题目(全)
javascript·数据结构·面试
Humbunklung1 小时前
使用 CSS 的 `::selection` 伪元素来改变 HTML 文本选中时的背景颜色
前端·css·html
今早晚点睡喔1 小时前
小程序学习01——HBuilder编辑器
前端·小程序
一只小川2 小时前
使用vscode以及chrome调试yarn源码
前端·yarn
前端理想哥2 小时前
TypeScript入门:三分钟学会可索引类型
前端·前端框架·前端工程化