From 754c220eabdbadbe036f5b70e23fc38be5ecfd45 Mon Sep 17 00:00:00 2001 From: tangjinzhou <415800467@qq.com> Date: Tue, 15 Jan 2019 09:40:24 +0800 Subject: [PATCH] fix: ie table scroll not work #390 --- components/vc-table/src/Table.jsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/components/vc-table/src/Table.jsx b/components/vc-table/src/Table.jsx index 8283585b3..fdd48b7f6 100644 --- a/components/vc-table/src/Table.jsx +++ b/components/vc-table/src/Table.jsx @@ -373,7 +373,11 @@ export default { event.preventDefault(); const wd = event.deltaY; const target = event.target; - const { bodyTable, fixedColumnsBodyLeft, fixedColumnsBodyRight } = this; + const { + ref_bodyTable: bodyTable, + ref_fixedColumnsBodyLeft: fixedColumnsBodyLeft, + ref_fixedColumnsBodyRight: fixedColumnsBodyRight, + } = this; let scrollTop = 0; if (this.lastScrollTop) {