water_xcx/miniprogram_npm/tdesign-miniprogram/overlay/overlay.wxml

20 lines
514 B
Plaintext
Raw Normal View History

2025-04-15 15:44:51 +08:00
<view
wx:if="{{realVisible && preventScrollThrough}}"
class="{{prefix}}-overlay {{transitionClass}}"
style="z-index: {{_zIndex}}; {{computedStyle}} {{customStyle}}"
bind:tap="handleClick"
catchtouchmove="noop"
bind:transitionend="onTransitionEnd"
>
<slot />
</view>
<view
wx:elif="{{realVisible}}"
class="{{prefix}}-overlay {{transitionClass}}"
style="z-index: {{_zIndex}}; {{computedStyle}} {{customStyle}}"
bind:tap="handleClick"
bind:transitionend="onTransitionEnd"
>
<slot />
</view>