zl7261
zl7261
headerRowClassName函数指定的class依然没有覆盖默认的element table 样式 需要通过/deep/来修改表头样式 主要是 background-color 与color样式 ```html .haha { background-color: rgb(0, 51, 102) !important; color: red; text-align: center } ``` color成功修改,但bg-color只修改了最右边的背景,子类的的没有没修改 ```html ``` 真正修改表头的背景颜色,需要 ```css /deep/ .plTableBox .el-table th...
   