解决办法:

elementUI之el-table左固定列把底部滚动条覆盖导致拖动无效

 

 

代码:

<style lang="scss">
  .el-table {
    .el-table__fixed {
      height:auto !important; // 此处的important表示优先于element.style
      bottom:17px; // 改为自动高度后,设置与父容器的底部距离,则高度会动态改变
    }
  }
</style>

 

相关文章: