We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4df9201 commit 5e287bcCopy full SHA for 5e287bc
src/tableFoot.vue
@@ -91,7 +91,7 @@ export default {
91
return this.onlyFixed && (item.fixed !== this.onlyFixed);
92
},
93
shouldRender(item) {
94
- return this.sum[item.key] !== undefined && !this.isHidden(item)
+ return !this.isHidden(item)
95
96
isInvisible(col) { // 非固定层的固定列应不可见
97
return col.fixed && !this.onlyFixed;
src/tableSum.vue
@@ -89,7 +89,7 @@ export default {
89
90
- return this.headSum[item.key] !== undefined && !this.isHidden(item)
0 commit comments