C端小程序
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

23 satır
822 B

  1. <view class="market">
  2. <!-- 券包 我的优惠券 -->
  3. <i-tabs class='tabs' current="{{ current_scroll }}" scroll bindchange="handleChangeScroll">
  4. <i-tab class='i-tab' wx:for="{{tabs}}" wx:key="unique" key="{{item.key}}" title="{{item.name}}"></i-tab>
  5. </i-tabs>
  6. <view class='section' wx:for='{{list}}' wx:key='{{index}}'>
  7. <view class='detail_msg'>
  8. <view class='logo'>
  9. <image src='{{item.coverImg}}'></image>
  10. </view>
  11. <view class='info'>
  12. <view>
  13. <text>{{item.title}}</text>
  14. </view>
  15. <view>
  16. <text class="txt1">有效期至:</text>
  17. <text class="txt2">{{item.expiredTime}}</text>
  18. </view>
  19. <view class="btns" bindtap="gotouse" data-quancode="{{item.id}}">立即使用</view>
  20. </view>
  21. </view>
  22. </view>
  23. </view>