convertNextPopup.wxml 665 B

12345678910111213141516
  1. <popup show="{{show}}" opacity='5' bind:close="closeTip">
  2. <view class="content">
  3. 请确认出发城市和兑换时间是否正确,兑换后将<text>无法取消和修改</text>!
  4. <view style="margin: 20rpx 0 10rpx 0;">出发城市:<tetx style=" color: #ee3a43;">{{city}}</tetx>
  5. </view>
  6. <view>兑换时间:<tetx style=" color: #ee3a43;">提前{{checkedTime}}分钟</tetx>
  7. </view>
  8. <view></view>
  9. <view class="modu">
  10. <view class="bottom-btn">
  11. <button class="cancel" bindtap="close">取消</button>
  12. <button class="sub" type="warn" bindtap="sub">立即兑换</button>
  13. </view>
  14. </view>
  15. </view>
  16. </popup>