[bugfix] Toast: method warning when touchmove (#618)

This commit is contained in:
neverland 2018-09-21 10:17:31 +08:00 committed by GitHub
parent d31d844828
commit 6df0d4bade
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 10 additions and 4 deletions

View File

@ -14,6 +14,9 @@ create({
methods: {
onClick() {
this.$emit('click');
}
},
// for prevent touchmove
noop() {}
}
});

View File

@ -3,5 +3,5 @@
custom-class="van-overlay"
custom-style="z-index: {{ zIndex }}; {{ mask ? 'background-color: rgba(0, 0, 0, .7);' : '' }}; {{ customStyle }}"
bind:tap="onClick"
catch:touchmove
catch:touchmove="noop"
/>

View File

@ -29,6 +29,9 @@ create({
this.setData({
show: false
});
}
},
// for prevent touchmove
noop() {}
}
});

View File

@ -10,7 +10,7 @@
>
<view
class="van-toast van-toast--{{ type === 'text' ? 'text' : 'icon' }} van-toast--{{ position }}"
catch:touchmove
catch:touchmove="noop"
>
<!-- text only -->
<view wx:if="{{ type === 'text' }}">{{ message }}</view>