index.wxml 818 B

123456789101112131415
  1. <van-transition show="{{ isShow }}" name="{{transition}}" custom-class="block">
  2. <view class="showmodel-bg" catchtouchmove="catchtouchmove">
  3. <view class="showmodel-box" style="top:{{ifTabBar?'48%':'40%'}};">
  4. <view class="model-title">{{title}}</view>
  5. <view class="model-content" style="word-break:break-all;">
  6. <slot></slot>
  7. {{content}}
  8. </view>
  9. <view class="model-but" catchtap="butClick">
  10. <van-button data-value='false' wx:if="{{!hideCancel}}" color='#F3F3F3' round custom-class='custom-class-but cancel'>{{cancel}}</van-button>
  11. <van-button data-value='true' color='#4DC2D4' round custom-class='custom-class-but'>{{confirm}}</van-button>
  12. </view>
  13. </view>
  14. </view>
  15. </van-transition>