[improvement] Toast: lock scroll (#586)

This commit is contained in:
neverland 2018-09-17 19:57:52 +08:00 committed by GitHub
parent 78b0d78b44
commit f3318bbccd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 10 additions and 2 deletions

View File

@ -3,4 +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
/>

View File

@ -8,7 +8,10 @@
custom-style="z-index: {{ zIndex }}"
custom-class="van-toast__container"
>
<view class="van-toast van-toast--{{ type === 'text' ? 'text' : 'icon' }} van-toast--{{ position }}">
<view
class="van-toast van-toast--{{ type === 'text' ? 'text' : 'icon' }} van-toast--{{ position }}"
catch:touchmove
>
<!-- text only -->
<view wx:if="{{ type === 'text' }}">{{ message }}</view>

View File

@ -3,4 +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
/>

View File

@ -8,7 +8,10 @@
custom-style="z-index: {{ zIndex }}"
custom-class="van-toast__container"
>
<view class="van-toast van-toast--{{ type === 'text' ? 'text' : 'icon' }} van-toast--{{ position }}">
<view
class="van-toast van-toast--{{ type === 'text' ? 'text' : 'icon' }} van-toast--{{ position }}"
catch:touchmove
>
<!-- text only -->
<view wx:if="{{ type === 'text' }}">{{ message }}</view>