This commit is contained in:
梁灏 2020-06-28 09:22:53 +08:00
parent cf930e3e56
commit 06f2c113ac

View file

@ -1020,7 +1020,7 @@
if (this.showHeader) this.$refs.header.scrollLeft = event.target.scrollLeft; if (this.showHeader) this.$refs.header.scrollLeft = event.target.scrollLeft;
if (this.isLeftFixed) this.$refs.fixedBody.scrollTop = event.target.scrollTop; if (this.isLeftFixed) this.$refs.fixedBody.scrollTop = event.target.scrollTop;
if (this.isRightFixed) this.$refs.fixedRightBody.scrollTop = event.target.scrollTop; if (this.isRightFixed) this.$refs.fixedRightBody.scrollTop = event.target.scrollTop;
if (this.showSummary) this.$refs.summary.$el.scrollLeft = event.target.scrollLeft; if (this.showSummary && this.$refs.summary) this.$refs.summary.$el.scrollLeft = event.target.scrollLeft;
this.hideColumnFilter(); this.hideColumnFilter();
}, },
handleFixedMousewheel(event) { handleFixedMousewheel(event) {