index.wxml 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <view class="coupon-page-container">
  2. <view class="notice-bar-content">
  3. <view class="notice-bar-text">
  4. 以下商品可使用
  5. <text class="height-light">{{couponTypeDesc}}</text>
  6. 优惠券
  7. </view>
  8. <t-icon name="help-circle" size="32rpx" color="#AAAAAA" bind:tap="openStoreList" />
  9. </view>
  10. <view class="goods-list-container">
  11. <goods-list
  12. wr-class="goods-list-wrap"
  13. goodsList="{{goods}}"
  14. bind:click="goodClickHandle"
  15. bind:addcart="cartClickHandle"
  16. />
  17. </view>
  18. <floating-button count="{{cartNum}}" />
  19. <t-popup visible="{{showStoreInfoList}}" placement="bottom" bind:visible-change="closeStoreList">
  20. <t-icon slot="closeBtn" name="close" size="40rpx" bind:tap="closeStoreList" />
  21. <view class="popup-content-wrap">
  22. <view class="popup-content-title"> 规则详情 </view>
  23. <view class="desc-group-wrap">
  24. <view wx:if="{{detail && detail.timeLimit}}" class="item-wrap">
  25. <view class="item-title">优惠券有效时间</view>
  26. <view class="item-label">{{detail.timeLimit}}</view>
  27. </view>
  28. <view wx:if="{{detail && detail.desc}}" class="item-wrap">
  29. <view class="item-title">优惠券说明</view>
  30. <view class="item-label">{{detail.desc}}</view>
  31. </view>
  32. <view wx:if="{{detail && detail.useNotes}}" class="item-wrap">
  33. <view class="item-title">使用须知</view>
  34. <view class="item-label">{{detail.useNotes}}</view>
  35. </view>
  36. </view>
  37. </view>
  38. </t-popup>
  39. </view>
  40. <t-toast id="t-toast" />