fix(Tabs): scrollspy not work when custom scroller (#5637)

This commit is contained in:
neverland 2020-02-08 19:59:34 +08:00 committed by GitHub
parent 79a38a3354
commit da7c86412c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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);
}
},
},