mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
[bugfix] Toast: method warning when touchmove (#618)
This commit is contained in:
parent
d31d844828
commit
6df0d4bade
@ -14,6 +14,9 @@ create({
|
|||||||
methods: {
|
methods: {
|
||||||
onClick() {
|
onClick() {
|
||||||
this.$emit('click');
|
this.$emit('click');
|
||||||
}
|
},
|
||||||
|
|
||||||
|
// for prevent touchmove
|
||||||
|
noop() {}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
@ -3,5 +3,5 @@
|
|||||||
custom-class="van-overlay"
|
custom-class="van-overlay"
|
||||||
custom-style="z-index: {{ zIndex }}; {{ mask ? 'background-color: rgba(0, 0, 0, .7);' : '' }}; {{ customStyle }}"
|
custom-style="z-index: {{ zIndex }}; {{ mask ? 'background-color: rgba(0, 0, 0, .7);' : '' }}; {{ customStyle }}"
|
||||||
bind:tap="onClick"
|
bind:tap="onClick"
|
||||||
catch:touchmove
|
catch:touchmove="noop"
|
||||||
/>
|
/>
|
||||||
|
@ -29,6 +29,9 @@ create({
|
|||||||
this.setData({
|
this.setData({
|
||||||
show: false
|
show: false
|
||||||
});
|
});
|
||||||
}
|
},
|
||||||
|
|
||||||
|
// for prevent touchmove
|
||||||
|
noop() {}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
>
|
>
|
||||||
<view
|
<view
|
||||||
class="van-toast van-toast--{{ type === 'text' ? 'text' : 'icon' }} van-toast--{{ position }}"
|
class="van-toast van-toast--{{ type === 'text' ? 'text' : 'icon' }} van-toast--{{ position }}"
|
||||||
catch:touchmove
|
catch:touchmove="noop"
|
||||||
>
|
>
|
||||||
<!-- text only -->
|
<!-- text only -->
|
||||||
<view wx:if="{{ type === 'text' }}">{{ message }}</view>
|
<view wx:if="{{ type === 'text' }}">{{ message }}</view>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user