Element-UI Table 表格尾部的合计行,当固定表头时,不显示
2024-10-30 13:07:02一. 问题
根据 Element UI 文档要求,实现合计行,固定表头,需要如下配置:
<el-table
ref="tableRef"
show-summary
:height="height"
...
>
实现合计行后,当固定表头(设置height)时,发现合计行不显示。
二. 解决方案
通过查看文档,发现:

export default {
updated() {
this.$nextTick(() => {
this.$refs.tableRef.doLayout()
})
}
}