paid.wxml 1.8 KB

123456789101112131415161718192021222324252627282930313233
  1. <view class="listAll">
  2. <view class="title" style="padding-top:{{navTop}}px;">
  3. <view class="titles">提交订单</view>
  4. <view class="back" style="top:{{navTop +5}}px;" bindtap="navigateBack">
  5. <image src="https://www.icelook.cn/exhibition/images/icon/backBlack.png" mode=""></image>
  6. </view>
  7. </view>
  8. <view class="list">
  9. <ul>
  10. <li>
  11. <view class="left">
  12. <view class="name">{{exhibition.exhibitionName}}在线语音讲解</view>
  13. </view>
  14. <view class="right">
  15. ¥<span>{{exhibition.preferentialPrice}}</span>
  16. <text style="color: #666;text-decoration: line-through;padding-left: 20rpx;">¥{{exhibition.originalPrice}}</text>
  17. </view>
  18. </li>
  19. <li>
  20. <view class="left">
  21. <view class="name" style="font-size: 42rpx;font-weight: bolder;margin-bottom: 20rpx;"><b>购买须知</b></view>
  22. <view class="times">您购买的商品为虚拟内容服务,购买后无法退订,购买前请确认。</view>
  23. <!-- <view class="time" style="color: #C94545;font-size: 28rpx;padding-top: 10rpx;">{{exhibition.exhibitionStartTime}} ~ {{exhibition.exhibitionEndTime}} </view> -->
  24. <view class="time" style="color: #C94545;font-size: 28rpx;padding-top: 10rpx;">有效时间:支付成功后{{exhibition.payoffTime}}分钟</view>
  25. </view>
  26. </li>
  27. </ul>
  28. <view class="payment">
  29. <view class="pay_l">应付<span>¥</span><text>{{exhibition.preferentialPrice}}</text></view>
  30. <view class="pay_r" bindtap="submit"><button>提交订单</button></view>
  31. </view>
  32. </view>
  33. </view>