解决elementui table fix列显示不全问题
2021-05-06 本文已影响0人
AriaHuo
![](https://img.haomeiwen.com/i2548469/7c55c04784b37ccf.png)
由于固定了列所以显示不全,查看元素发现给滚动条留了位置
解决方法先给了高度百分之百
后来发现滚动条被遮盖
所以有了下面的解决方案
.el-table__fixed {
height: 100% !important;
pointer-events: none;
.el-table__fixed-body-wrapper{
pointer-events: all
}
}