el-table setting the fixed column fixed and the total row causes the horizontal scroll bar to fail to scroll

In el-table, if fixed, fixed="right" is set to the attribute of a certain row, and there is a total row in the table, this will cause the scroll bar above the total row to be unable to move. Solution:

plan 1:

::v-deep .el-table { .el-table__fixed { height: auto !important; bottom: 17px; } }

Scenario 2:

::v-deep .el-table { .el-table__body-wrapper { z-index: 2; } }

Guess you like

Origin blog.csdn.net/kobe_IT/article/details/130425432