mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
fix(Tabs): 修复选项卡竖向滚动时不触发scroll事件 (#2299)
This commit is contained in:
parent
94e71d1509
commit
002f26fb3c
@ -301,6 +301,10 @@ VantComponent({
|
||||
);
|
||||
},
|
||||
|
||||
onTouchScroll(event: Weapp.TouchEvent) {
|
||||
this.$emit('scroll', event.detail);
|
||||
},
|
||||
|
||||
onTouchStart(event: Weapp.TouchEvent) {
|
||||
if (!this.data.swipeable) return;
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
<wxs src="../wxs/utils.wxs" module="utils" />
|
||||
|
||||
<view class="custom-class {{ utils.bem('tabs', [type]) }}">
|
||||
<van-sticky disabled="{{ !sticky }}" z-index="{{ zIndex }}" offset-top="{{ offsetTop }}">
|
||||
<van-sticky disabled="{{ !sticky }}" z-index="{{ zIndex }}" offset-top="{{ offsetTop }}" bind:scroll="onTouchScroll">
|
||||
<view class="{{ utils.bem('tabs__wrap', { scrollable }) }} {{ type === 'line' && border ? 'van-hairline--top-bottom' : '' }}">
|
||||
<slot name="nav-left" />
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user