index.wxml 744 B

123456789101112
  1. <van-transition show="{{ isShow }}" 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;">{{content}}</view>
  6. <view class="model-but" catchtap="butClick">
  7. <van-button data-value='false' wx:if="{{!hideCancel}}" color='#F3F3F3' round custom-class='custom-class-but cancel'>{{cancel}}</van-button>
  8. <van-button data-value='true' color='#4DC2D4' round custom-class='custom-class-but'>{{confirm}}</van-button>
  9. </view>
  10. </view>
  11. </view>
  12. </van-transition>