zoujiandong 2bd2fd31ac 1.22
2024-01-22 08:55:30 +08:00

24 lines
682 B
Plaintext

<view
wx:if="{{realVisible && preventScrollThrough}}"
class="{{prefix}}-overlay {{transitionClass}}"
style="z-index: {{_zIndex}}; {{computedStyle}} {{customStyle}}"
bind:tap="handleClick"
catchtouchmove="noop"
bind:transitionend="onTransitionEnd"
aria-role="{{ ariaRole || 'button' }}"
aria-label="{{ ariaLabel || '关闭' }}"
>
<slot />
</view>
<view
wx:elif="{{realVisible}}"
class="{{prefix}}-overlay {{transitionClass}}"
style="z-index: {{_zIndex}}; {{computedStyle}} {{customStyle}}"
bind:tap="handleClick"
bind:transitionend="onTransitionEnd"
aria-role="{{ ariaRole || 'button' }}"
aria-label="{{ ariaLabel || '关闭' }}"
>
<slot />
</view>