Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

5 лет назад
5 лет назад
5 лет назад
5 лет назад
5 лет назад
5 лет назад
5 лет назад
5 лет назад
5 лет назад
12345678910111213141516171819202122232425262728293031323334
  1. <!--index.wxml-->
  2. <view class="container">
  3. <!-- <view class="userinfo">
  4. <button wx:if="{{!hasUserInfo && canIUse}}" open-type="getUserInfo" bindgetuserinfo="getUserInfo"> 获取头像昵称 </button>
  5. <block wx:else>
  6. <image bindtap="bindViewTap" class="userinfo-avatar" src="{{userInfo.avatarUrl}}" mode="cover"></image>
  7. <text class="userinfo-nickname">{{userInfo.nickName}}</text>
  8. </block>
  9. </view>
  10. <view class="usermotto">
  11. <text class="user-motto">{{motto}}</text>
  12. </view> -->
  13. <image class="buyBg" src="../images/buyBg.jpg"></image>
  14. <swiper duration="500" next-margin="70rpx">
  15. <block wx:for="{{dataList}}" wx:key="*this">
  16. <swiper-item data-index="{{item.coupon_sell_id}}" bindtap="skipPage">
  17. <view class="botCont">
  18. <view class="imgView">
  19. <image src="{{item.coupon_img_small}}"></image>
  20. </view>
  21. <view class="textView">
  22. <text class="nameText">{{item.coupon_name}}</text>
  23. <text class="timeText">{{item.coupon_memo}}</text>
  24. <text class="timeText">(有效期:{{item.end_date}})</text>
  25. </view>
  26. <view class="buyView">立即购买</view>
  27. </view>
  28. </swiper-item>
  29. </block>
  30. </swiper>
  31. </view>