bottom-popup.wxml 368 B

123456
  1. <view catchtouchmove="forbid">
  2. <view class="tui-popup-class tui-bottom-popup {{show?'tui-popup-show':''}}" style="background:{{bgcolor}};{{height?'height:'+height+'rpx':''}};z-index:{{zIndex}}">
  3. <slot></slot>
  4. </view>
  5. <view class="tui-popup-mask {{show?'tui-mask-show':''}}" style="z-index:{{zIndex-10}}" wx:if="{{mask}}" bindtap="handleClose"></view>
  6. </view>