el-table切换页面时固定列操作栏里的按钮下方多出一条线

效果如图:
在这里插入图片描述

是因为使用了fixed属
解决方法:给table加类名class=“table-fixed-class”

<style lang="scss" scoped>
  .table-fixed-class /deep/ .el-table__fixed-right{
    height: 100% !important;
 }
</style>

修改后:

el-table切换页面时固定列操作栏里的按钮下方多出一条线_第1张图片

你可能感兴趣的:(element-ui,工作笔记,css,前端)