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.

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