2023-03-06 17:57:39 +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>