vue表格之tableHeaderColor(修改表头背景色)

<el-table :header-cell-style="tableHeaderColor"></el-table>
 
// 更改表头样式
tableHeaderColor ({ row, column, rowIndex, columnIndex }) {
   if (rowIndex === 0) {
      return 'background-color: #373F52;color: white;font-weight: 700;'
   }
}
// 给el-table设置高度,可以固定表头
例如: height="200"
// 修改table的行高
:row-style="{height:0+'px'}" :cell-style="{padding:0+'px'}

 

posted @ 2019-09-18 14:28  _0123456789  阅读(6349)  评论(0编辑  收藏  举报