问题效果如下:
解决:
1,html 布局中添加:
2. 页面中覆盖原样式代码:
<style lang="scss" scoped>
.table-fixed {
/deep/ .el-table__fixed-right {
height: 100% !important; //设置高优先,以覆盖内联样式
}
/deep/ .el-table__fixed {
height: 100% !important; //设置高优先,以覆盖内联样式
}
}
</style>
以上内容仅供参考。