element ui —table中,单独改变某个列或者行的属性 例如(改变某个列的背景颜色、去除表格分割线)
1.在el-table中添加
<el
-table
:cell
-style
="columnStyle"
:default-sort
="{prop: 'id', order: 'descending'}"
style
="width: 100%;">
其中columnStyle是自己写的一个方法
2.在methods里面写方法
columnStyle ({row
, column
, rowIndex
, columnIndex
}) {
if (columnIndex
=== 0) {
return 'background-color:#fff9e9;!important'
}
}
转载请注明原文地址:https://blackberry.8miu.com/read-34067.html