C端小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

62 lines
2.2 KiB

  1. <navbar back home background="#fff" text="停车券详情"></navbar>
  2. <view style="height:{{navigationBarHeight}} "></view>
  3. <view class="container page" wx:if="{{showPage}}">
  4. <view class="coupon_detail clearfix">
  5. <view class="fl wmfl">
  6. <image src="{{data.coverImg}}" />
  7. </view>
  8. <view class="fl right">
  9. <text class="title">{{data.title}}</text>
  10. <view class="time">{{data.subTitle}}</view>
  11. <view class="money">
  12. <text>¥{{data.salePrice/100}}</text>
  13. <del wx:if="{{data.unit==0}}">{{data.price/100}}元</del>
  14. <text class='txt02' wx:if="{{data.unit==1}}">{{data.price/100}}小时</text>
  15. <text wx:if="{{data.usePrice!=undefined}}" class="manjian">满{{data.usePrice/100}}元可用</text>
  16. <text wx:if="{{data.usePrice==undefined}}" class="manjian">仅限本店使用</text>
  17. </view>
  18. </view>
  19. </view>
  20. <view class='note'>
  21. <view wx:if="{{data.couponOrderStatus==0}}">
  22. <text>下单时间</text>
  23. <text>{{createDate}}</text>
  24. </view>
  25. <view wx:if="{{data.couponOrderStatus==1}}">
  26. <text>核销时间</text>
  27. <text>{{updateDate}}</text>
  28. </view>
  29. <view wx:if="{{data.couponOrderStatus==2}}">
  30. <text>过期时间</text>
  31. <text>{{updateDate}}</text>
  32. </view>
  33. <view wx:if="{{data.couponOrderStatus==3}}">
  34. <text>退款时间</text>
  35. <text>{{updateDate}}</text>
  36. </view>
  37. <view>
  38. <text>有效期至:</text>
  39. <text>{{expiredTime}}</text>
  40. </view>
  41. <view>
  42. <text>订单编号</text>
  43. <text>{{data.orderId}}</text>
  44. </view>
  45. <view>
  46. <text>实付金额</text>
  47. <text style='color:#ff4949;font-size:32rpx;'>{{data.couponPrice/100}}元</text>
  48. </view>
  49. </view>
  50. <view class='notes' style="border-bottom:0">
  51. <view>
  52. <text>购买须知</text>
  53. </view>
  54. <view>
  55. <text wx:if="{{data.contentType==0}}" style="width: 92%;padding: 0 4%;background: #fff;display: flex;flex-direction: column;font-size: 26rpx;"> {{data.remark}}</text>
  56. <rich-text nodes="{{curHtml}}" wx:if="{{data.contentType!=0}}" style="width: 92%;padding: 0 4%;background: #fff;display: flex;flex-direction: column;"></rich-text>
  57. </view>
  58. </view>
  59. </view>