需要修改el-table组件鼠标悬停在行上时的高亮背景色
网上各种
.el-table tbody tr:hover>td
.el-table .el-table__body tr:hover td等,
以上样式选择器不能影响到fixed列
.el-table .el-table__body tr.hover-row > td{
background-color:#ffffff!important
}
.el-tablle--enable-row-hover .el-table__body tr:hover > td{
background-color:#ffffff!important
}