// ::v-deep .el-table {
// .el-table__fixed {
// height:auto !important;
// bottom:10px !important;
// }
// }
// ::v-deep .el-table__body-wrapper{
// z-index: 2
// }
在页面加上以上样式就OK了
另外解决高度错位也有样式代码,请看如下
/deep/ .el-table__fixed-right-patch {
background-color: transparent;
}
/deep/ .el-table__fixed-right::before,
/deep/ .el-table__fixed::before {
background-color: transparent;
}
// 解决固定列高度错位问题 8px与滚动条高度相等
/deep/.el-table__fixed-body-wrapper .el-table__body {
padding-bottom: 8px!important;
}