C端小程序
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

48 rindas
1.6 KiB

  1. <!-- 券的详情页面 -->
  2. <view class='coupons'>
  3. <view class="coupons-body">
  4. <view class='banner'>
  5. <image src='{{data.coverImg}}'></image>
  6. </view>
  7. <view class='coupons_info'>
  8. <view>
  9. <text>{{data.title}}<text>限购{{data.useLimitQuantity}}件</text></text>
  10. <text wx:if="{{data.endTime!=undefined}}">剩余时间:<text>{{day}}天</text><text>{{hour}}小时</text><text>{{minute}}分钟</text></text>
  11. <text>剩余件数:<text>{{data.remainInventory}}件</text></text>
  12. </view>
  13. <view>
  14. <text>¥{{data.salePriceStr}}</text>
  15. <text>¥{{data.priceStr}}</text>
  16. </view>
  17. </view>
  18. <view class='posi'>
  19. <view class='posi_logo'>
  20. <view>
  21. <image src='{{data.merChantImgUrl}}'></image>
  22. </view>
  23. <view>
  24. <text>{{data.merchantName}}</text>
  25. <text>{{data.addr}}{{data.buildingName}}{{data.floorName}}</text>
  26. </view>
  27. <image bindtap='phone' class="tel" src="./../../../assets/img/tel.jpg" mode="widthFix" />
  28. </view>
  29. <!-- <view>
  30. <text>更多适用门店</text>
  31. <text class='iconfont icon-right'></text>
  32. </view> -->
  33. </view>
  34. <view class='notes'>
  35. <view>
  36. <text>购买须知</text>
  37. </view>
  38. <view>
  39. <text><text class='spot'></text>{{data.remark}}</text>
  40. </view>
  41. </view>
  42. </view>
  43. <view class="buy-view app-border-top">
  44. <button bindtap='orderFunc' class='buy' wx:if="{{data.salePriceStr!=0}}">立即支付</button>
  45. <button bindtap='orderFunc' class='buy' wx:elif="{{data.salePriceStr==0}}">免费领取</button>
  46. </view>
  47. </view>