index.wxml 662 B

123456789101112131415161718
  1. <view class="modal-overlay" wx:if="{{show}}">
  2. </view>
  3. <view class="modal-wrapper" wx:if="{{show}}" style="width:{{ width|| '70%'}};height:{{height || '70vh'}}">
  4. <view class="modal-header">
  5. <view class="modal-title">{{title}}</view>
  6. <view class="modal-close" wx:if="{{closeable}}" bind:tap="close"><van-icon name="cross" size="20px"/></view>
  7. </view>
  8. <view class="modal-content">
  9. <slot name="content"></slot>
  10. </view>
  11. <view class="modal-footer">
  12. <!-- <view class="modal-cancel modal-btn btn "></view> -->
  13. <view class="modal-enter footer-btn btn " bind:tap="enter">确认</view>
  14. </view>
  15. </view>