mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
Merge branch 'dev' of https://github.com/youzan/vant into dev
This commit is contained in:
commit
06513a985f
@ -6,10 +6,11 @@ import { isHidden } from '../utils/dom/style';
|
|||||||
import { on, off } from '../utils/dom/event';
|
import { on, off } from '../utils/dom/event';
|
||||||
import { BORDER_TOP_BOTTOM } from '../utils/constant';
|
import { BORDER_TOP_BOTTOM } from '../utils/constant';
|
||||||
import {
|
import {
|
||||||
setRootScrollTop,
|
getScroller,
|
||||||
|
getVisibleTop,
|
||||||
getElementTop,
|
getElementTop,
|
||||||
getVisibleHeight,
|
getVisibleHeight,
|
||||||
getVisibleTop,
|
setRootScrollTop,
|
||||||
} from '../utils/dom/scroll';
|
} from '../utils/dom/scroll';
|
||||||
|
|
||||||
// Mixins
|
// Mixins
|
||||||
@ -27,9 +28,14 @@ export default createComponent({
|
|||||||
mixins: [
|
mixins: [
|
||||||
ParentMixin('vanTabs'),
|
ParentMixin('vanTabs'),
|
||||||
BindEventMixin(function(bind) {
|
BindEventMixin(function(bind) {
|
||||||
|
if (!this.scroller) {
|
||||||
|
this.scroller = getScroller(this.$el);
|
||||||
|
}
|
||||||
|
|
||||||
bind(window, 'resize', this.resize, true);
|
bind(window, 'resize', this.resize, true);
|
||||||
|
|
||||||
if (this.scrollspy) {
|
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) {
|
scrollspy(val) {
|
||||||
if (val) {
|
if (val) {
|
||||||
on(window, 'scroll', this.onScroll, true);
|
on(this.scroller, 'scroll', this.onScroll, true);
|
||||||
} else {
|
} else {
|
||||||
off(window, 'scroll', this.onScroll);
|
off(this.scroller, 'scroll', this.onScroll);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
Loading…
x
Reference in New Issue
Block a user