element table 表头header-cell-style设置的表头不生效

只要加个!important就可以了,像这样。标点符合不能多写

header-cell-style是官网写的修改el-table表头样式的回调,且说header-row-style不生效也就罢了,header-cell-style也不生效是不是有点过分。

我抓耳挠腮的看了半天,最后手写了个样式进去,但还是气不过,把他改过来,最后在多次查资料(搜索)终于找到了原因,或许是表格父级元素使用了flex布局的原因,只要加个!important就可以了,像这样。

javascript 复制代码
   <el-table :data="tableData" border :style="{ width: width }" :height="height"
        :header-cell-style="tableHeaderCellStyle" 
        >
        <template v-for="(item, index) in tableHeader">
          <el-table-column v-if="item.label == '排序' || item.label == '排名'" :prop="item.prop" :label="item.label"
            :width="item.width" show-overflow-tooltip align="center">
            <template #default="scope">
              <span :style="getStyle(scope)">{{ scope.row[item.prop] }}</span>
            </template>
          </el-table-column>
          <el-table-column v-else :prop="item.prop" :label="item.label" :width="item.width" align="center"
            show-overflow-tooltip>
          </el-table-column>
        </template>
      </el-table>


// 修改 table header cell的背景色
const tableHeaderCellStyle = ({ row, column, rowIndex, columnIndex }) => {
  let background = null
 
  if (rowIndex == 0) {
    props.tableHeader.map((item, index) => {
      if (columnIndex == index && item.background) {
        background = `${item.background} !important`
      }
    })
  }
  // return  { background: 'pink !important' } // 使用 backgroundColor
  // 如果有背景色,则返回一个样式对象
  if (background) {
    return { background: background };  // 使用 backgroundColor
  }
}
相关推荐
人才程序员14 分钟前
【无标题】
c语言·前端·c++·qt·软件工程·qml·界面
m0_7482333643 分钟前
后端接口返回文件流,前端下载(java+vue)
java·前端·vue.js
weixin_307779131 小时前
用SparkSQL和PySpark完成按时间字段顺序将字符串字段中的值组合在一起分组显示
javascript·ajax·ecmascript
m0_748238781 小时前
前端使用 Konva 实现可视化设计器(20)- 性能优化、UI 美化
前端·ui·性能优化
h_小波2 小时前
探索 Vue.js 组件开发:从基础到进阶的完整指南
前端·vue.js·前端框架
2402_857583492 小时前
科技赋能医疗挂号:SSM 医院预约挂号系统的 Vue 卓越设计与达成
vue.js·科技·mfc
m0_748256142 小时前
前端图表与数据可视化 - 2024 年实战与面试重点
前端·信息可视化·面试
web136885658712 小时前
前端和后端解决跨域问题的方法
前端
elirlove12 小时前
html在线转换工具集合大全
前端·javascript·html
haha_qasim2 小时前
怎么将pdf中的某一个提取出来?介绍几种提取PDF中页面的方法
前端·pdf