C端小程序
Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

58 linhas
2.5 KiB

  1. <!-- <button class='goback' bindtap='goback'><image src='{{wmhome}}' mode="widthFix"></image></button> -->
  2. <navbar back home text="签到" background="#fff"></navbar>
  3. <!-- banner活动详情页面 -->
  4. <view class='coupons' style="padding-top:{{navigationBarHeight}}">
  5. <view class="coupons-body">
  6. <view class='banner'>
  7. <image src='{{data.coverImg}}' mode="widthFix"></image>
  8. </view>
  9. </view>
  10. <view class='act'>
  11. <text class='txt001'>{{data.title}}</text>
  12. <text class='txt002'>{{data.subTitle}}</text>
  13. <view class="proct">
  14. <text>活动说明</text>
  15. <text>{{data.detail}}</text>
  16. </view>
  17. </view>
  18. <view class='notes' style='display:none;'>
  19. <view>
  20. <text>活动详情</text>
  21. </view>
  22. <view>
  23. <text><text class='spot'></text>{{data.detail}}</text>
  24. </view>
  25. </view>
  26. <view class='contain clearfix'>
  27. <!-- 优惠券 -->
  28. <navigator wx:for="{{data.coupons}}" wx:key="{{index}}" url="/pages/coupon/detail/index?couponChannelId={{item.id}}&couponId={{item.couponId}}">
  29. <!-- 首页优惠券列表页面 -->
  30. <view class="coupons1">
  31. <view class="coupons1-img">
  32. <image src="{{item.coverImg}}"></image>
  33. </view>
  34. <view class="coupons1-info">
  35. <view class="coupons1-info-name tit">{{item.title}}</view>
  36. <view class="coupons1-info-name subtitle">{{item.subTitle}}</view>
  37. <view class="coupons1-info-price-p">
  38. <text class="i">¥</text>{{item.salePriceStr}}
  39. <view class="coupons-info-manjian" style="margin-top:10rpx;font-size:28rpx;" wx:if="{{item.type == 1}}">
  40. 满¥{{item.usePriceStr}}可用
  41. </view>
  42. <view class="coupons-info-manjian" style="font-size:28rpx;" wx:if="{{item.type == 2||item.type == 3||item.type==4||item.type==5||item.type==6||item.type==7}}">
  43. 仅限本店使用
  44. </view>
  45. </view>
  46. </view>
  47. <!-- <view class="coupons1-info-name subtitle sy">剩余{{item.remainInventory}}</view> -->
  48. <view class="coupons1-btn">
  49. <!-- 优惠券价格 -->
  50. <i-button class="buy" hover-class='active' wx:if="{{item.salePriceStr==0}}" data-date='{{data}}'>免费领</i-button>
  51. <i-button class="buy" hover-class='active' wx:elif="{{item.salePriceStr!=0}}" data-date='{{data}}'>马上购</i-button>
  52. </view>
  53. <!-- <view class="coupons1-border"></view> -->
  54. </view>
  55. </navigator>
  56. </view>
  57. </view>