index.wxml 448 B

123456789
  1. <view class='container-popup {{ show ? "popup-show" : "" }} {{ "l-popup-" + contentAlign }}' style="z-index:{{zIndex}};" catchtouchmove="doNothingMove">
  2. <view class="container-bg l-bg-class"></view>
  3. <view wx:if="{{show}}" class="popup-content {{ show ? contentAlign : ''}} popup-fade-{{contentAlign}}-active-{{animation ? status:''}}" catchtap="onPupopTap">
  4. <view catchtap="doNothingTap">
  5. <slot></slot>
  6. </view>
  7. </view>
  8. </view>