From da7c86412c2b2c41e3916f73d5cdc8938e4236f4 Mon Sep 17 00:00:00 2001 From: neverland Date: Sat, 8 Feb 2020 19:59:34 +0800 Subject: [PATCH] fix(Tabs): scrollspy not work when custom scroller (#5637) --- src/tabs/index.js | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/src/tabs/index.js b/src/tabs/index.js index dbdd1d45c..ca688facd 100644 --- a/src/tabs/index.js +++ b/src/tabs/index.js @@ -6,10 +6,11 @@ import { isHidden } from '../utils/dom/style'; import { on, off } from '../utils/dom/event'; import { BORDER_TOP_BOTTOM } from '../utils/constant'; import { - setRootScrollTop, + getScroller, + getVisibleTop, getElementTop, getVisibleHeight, - getVisibleTop, + setRootScrollTop, } from '../utils/dom/scroll'; // Mixins @@ -27,9 +28,14 @@ export default createComponent({ mixins: [ ParentMixin('vanTabs'), BindEventMixin(function(bind) { + if (!this.scroller) { + this.scroller = getScroller(this.$el); + } + bind(window, 'resize', this.resize, true); + if (this.scrollspy) { - bind(window, 'scroll', this.onScroll, true); + bind(this.scroller, 'scroll', this.onScroll, true); } }), ], @@ -152,9 +158,9 @@ export default createComponent({ scrollspy(val) { if (val) { - on(window, 'scroll', this.onScroll, true); + on(this.scroller, 'scroll', this.onScroll, true); } else { - off(window, 'scroll', this.onScroll); + off(this.scroller, 'scroll', this.onScroll); } }, },