赞
踩
- //正常表格
- ::v-deep .el-table tbody tr:hover>td {
- background-color: transparent !important;
- }
-
- //右边固定列表格
- ::v-deep .el-table__fixed-right tbody tr:hover>td { //右边固定
- background-color: transparent !important;
- }
通过以上的设置确实可以达到一定的效果,表格在hover的时候部分不高亮,这样是不满足的,所以重新找到下面的方式可以解决问题
- ::v-deep .el-table .el-table__body tr.hover-row > td{
- background-color:#ffffff!important
- }
- ::v-deep .el-tablle--enable-row-hover .el-table__body tr:hover > td{
- background-color:#ffffff!important
- }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。