C端小程序
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

36 行
1.6 KiB

  1. <!-- 折扣卡list页面 -->
  2. <view class='content'>
  3. <view class='header'>
  4. <image src="./../../assets/img/growthbg.png" mode="widthFix"></image>
  5. </view>
  6. <view class="market">
  7. <i-tabs class='tabs' current="{{ current_scroll }}" scroll bindchange="handleChangeScroll">
  8. <i-tab class='i-tab' wx:for="{{tabs}}" wx:key="unique" key="{{item.key}}" title="{{item.name}}"></i-tab>
  9. </i-tabs>
  10. <view class='cards'>
  11. <view class="nocoupon" wx:if="{{list.length==0}}">
  12. <image src="./../../assets/img/coupon.png" mode="widthFix" />
  13. <text class="txt001">请您敬请期待</text>
  14. <text class='txt002'>我们正在筹备一大波优惠活动</text>
  15. <navigator class='nav' url="/pages/index/index" open-type="switchTab" hover-class="other-navigator-hover">
  16. <button hover-class='active'>前往首页看看</button>
  17. </navigator>
  18. </view>
  19. <view class='section' wx:for='{{list}}' wx:key='{{index}}' bindtap="gotouse" data-quancode="{{item.id}}" data-couponorderstatus="{{item.couponOrderStatus}}">
  20. <view class='mms'>
  21. <view class='detail_msg'>
  22. <image mode="aspectFill" src='{{item.coverImg}}' mode='widthFix'></image>
  23. <text>{{item.title}}</text>
  24. </view>
  25. <view class='buycardbtn'>
  26. <button>{{item.salePrice}}元 <text>购买</text></button>
  27. </view>
  28. </view>
  29. </view>
  30. <view class="loading" wx:if="{{loading}}">
  31. <image src="./../../assets/img/loading.gif" mode="widthFix"></image>{{content}}
  32. </view>
  33. </view>
  34. </view>
  35. </view>