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.

46 lines
2.1 KiB

  1. <navbar back home text="停车券"></navbar>
  2. <view style="height:{{navigationBarHeight}} "></view>
  3. <view class="market">
  4. <!-- 券包 我的优惠券 -->
  5. <i-tabs class='tabs' current="{{ current_scroll }}" scroll bindchange="handleChangeScroll">
  6. <i-tab class='i-tab' wx:for="{{tabs}}" wx:key="unique" key="{{item.key}}" title="{{item.name}}"></i-tab>
  7. </i-tabs>
  8. <view style='padding-top:120rpx;'>
  9. <view class="nocoupon" wx:if="{{list.length==0}}">
  10. <image src="{{noCoupon}}" mode="widthFix" />
  11. <text class="txt001">请您敬请期待</text>
  12. <text class='txt002'>我们正在筹备一大波优惠活动</text>
  13. <navigator class='nav' url="{{goHomeUrl}}" open-type="switchTab" hover-class="other-navigator-hover">
  14. <button hover-class='active'>前往首页看看</button>
  15. </navigator>
  16. </view>
  17. <view class='section' wx:for='{{list}}' wx:key="index" bindtap="gotouse" data-quancode="{{item.id}}" data-couponorderstatus="{{item.couponOrderStatus}}">
  18. <view class='mms'>
  19. <view class="{{item.couponOrderStatus == 0 ? 'detail_msg':'detail_msgYsy'}}">
  20. <view class='logo'>
  21. <image mode="aspectFill" src='{{item.coverImg}}'></image>
  22. </view>
  23. <view class='info'>
  24. <view class='title'>
  25. <text>{{item.title}}</text>
  26. </view>
  27. <view class='subtitle'>
  28. <text>{{item.subTitle}}</text>
  29. </view>
  30. <!-- <view hover-class='active' wx:if="{{item.couponOrderStatus==0}}" class="btns">查看</view>
  31. <view hover-class='active' wx:elif="{{item.couponOrderStatus==1||item.couponOrderStatus==2||item.couponOrderStatus==3}}" class="btns">查看</view> -->
  32. </view>
  33. </view>
  34. <!-- <image class="liness" src='{{linessUrl}}' mode="widthFix"></image> -->
  35. <view class='expiretime'>
  36. <text class="txt1">有效期至:</text>
  37. <text class="txt2">{{item.expiredTime}}</text>
  38. </view>
  39. </view>
  40. </view>
  41. <view class="loading" wx:if="{{loading}}">
  42. <image src="{{loadingUrl}}" mode="widthFix"></image>{{content}}
  43. </view>
  44. </view>
  45. </view>