mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
[improvement] Toast: lock scroll (#586)
This commit is contained in:
parent
78b0d78b44
commit
f3318bbccd
1
dist/overlay/index.wxml
vendored
1
dist/overlay/index.wxml
vendored
@ -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
|
||||
/>
|
||||
|
5
dist/toast/index.wxml
vendored
5
dist/toast/index.wxml
vendored
@ -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>
|
||||
|
||||
|
@ -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
|
||||
/>
|
||||
|
@ -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>
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user