mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
fix(Tabs): lock scroll not work when using scrollspy (#5727)
This commit is contained in:
parent
c401b8d7af
commit
c4be70c4e8
@ -306,16 +306,16 @@ export default createComponent({
|
||||
if (el) {
|
||||
const to = getElementTop(el, this.scroller) - this.scrollOffset;
|
||||
|
||||
this.clickedScroll = true;
|
||||
this.lockScroll = true;
|
||||
scrollTopTo(this.scroller, to, +this.duration, () => {
|
||||
this.clickedScroll = false;
|
||||
this.lockScroll = false;
|
||||
});
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
onScroll() {
|
||||
if (this.scrollspy && !this.clickedScroll) {
|
||||
if (this.scrollspy && !this.lockScroll) {
|
||||
const index = this.getCurrentIndexOnScroll();
|
||||
this.setCurrentIndex(index);
|
||||
}
|
||||
|
@ -49,7 +49,7 @@ export function scrollTopTo(
|
||||
if ((isDown && current < to) || (!isDown && current > to)) {
|
||||
raf(animate);
|
||||
} else if (callback) {
|
||||
callback();
|
||||
raf(callback as FrameRequestCallback);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user