您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

5 年前
5 年前
5 年前
5 年前
5 年前
5 年前
5 年前
12345678910111213141516171819202122232425
  1. <!--index.wxml-->
  2. <view class="container">
  3. <image class="buyBg" src="../images/buyBg.jpg"></image>
  4. <!-- <swiper duration="500" next-margin="70rpx"> -->
  5. <!-- <swiper duration="500">
  6. <block wx:for="{{dataList}}" wx:key="*this">
  7. <swiper-item data-index="{{item.coupon_sell_id}}" bindtap="skipPage"> -->
  8. <view class="botCont" data-index="{{dataList.coupon_sell_id}}" bindtap="skipPage">
  9. <view class="imgView">
  10. <image src="{{dataList.coupon_img_small}}"></image>
  11. </view>
  12. <view class="textView">
  13. <text class="nameText">{{dataList.coupon_name}}</text>
  14. <text class="timeText">{{dataList.coupon_condition_desc}}</text>
  15. <text class="timeText">(有效期:{{dataList.duration}})</text>
  16. </view>
  17. <view class="buyView">立即购买</view>
  18. </view>
  19. <!-- </swiper-item>
  20. </block>
  21. </swiper> -->
  22. </view>