由于固定了列所以显示不全,查看元素发现给滚动条留了位置
解决方法先给了高度百分之百
后来发现滚动条被遮盖
所以有了下面的解决方案
.el-table__fixed {
height: 100% !important;
pointer-events: none;
.el-table__fixed-body-wrapper{
pointer-events: all
}
}
由于固定了列所以显示不全,查看元素发现给滚动条留了位置
解决方法先给了高度百分之百
后来发现滚动条被遮盖
所以有了下面的解决方案
.el-table__fixed {
height: 100% !important;
pointer-events: none;
.el-table__fixed-body-wrapper{
pointer-events: all
}
}