The last item of the el-table fixed column is not fully displayed (only the upper half of the data is displayed)

Reason: the height is not enough, resulting in being covered

Example:

 

 Solution:

// 计算方式,高度,滚动可以保证高度不受限制,页面内容会完全显示
::v-deep .el-table__fixed {
    height: 100% !important;
    z-index: 50;
  }
  ::v-deep .el-table__body-wrapper {
    overflow: scroll !important;
  }
  ::v-deep .el-table__fixed:before {
    width: 0;
    height: 0;
  }

Guess you like

Origin blog.csdn.net/future_1_/article/details/130101882