日常开发记录-el-table 固定列下横向滚动条无法拖动的问题解决方案

原因:层级问题,左侧固定列层级高,滚动条层级低,提升一下滚动条层级即可

注意要在全局样式中定义类 fixed-scrool-error 样式

.fixed-scroll-error {
  .el-table--scrollable-x .el-table__body-wrapper {
    z-index: 2;
  }
}

 运用:直接在有问题的表格最外层 标签中使用 fixed-scroll-error 即可

<template>
  <div class="fixed-scroll-error">
    <el-table>
    </el-table>
  </div>
</template>

 

posted on 2022-08-25 14:07  法老的微笑  阅读(1082)  评论(0)    收藏  举报