解决element UI中el_table的合计栏在滚动条下方问题

张闲生 / 2023-07-22 / 原文

 

 

 代码参考:

<style>
.itemTrading .el-table{
  overflow: auto;
}
.itemTrading  .el-table__body-wrapper,
.itemTrading  .el-table__header-wrapper,
.itemTrading  .el-table__footer-wrapper {
  overflow: visible;
}
.itemTrading  .el-table::after {
  position: relative !important;
}
//这里根据自己的项目查看是否需要添加。
//我的页面样式需要将此处的滚动条也进行隐藏。
.body-theme-grenn .el-table--scrollable-x .el-table__body-wrapper{
  overflow: visible;
}
</style>

参考:https://blog.csdn.net/qq_32103525/article/details/119758716