C端小程序
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

26 linhas
850 B

  1. <view class="market">
  2. <i-tabs class='tabs' current="{{ current_scroll }}" scroll bindchange="handleChangeScroll">
  3. <i-tab class='i-tab' wx:for="{{tabs}}" wx:key="unique" key="{{item.id}}" title="{{item.title}}"></i-tab>
  4. </i-tabs>
  5. <view class='section' wx:for='{{list}}' wx:key='{{index}}'>
  6. <view class='detail_msg'>
  7. <view class='logo'>
  8. <image src='http://img02.tooopen.com/images/20150928/tooopen_sy_143912755726.jpg'></image>
  9. </view>
  10. <view class='info'>
  11. <view>
  12. <text>{{item.title}}</text>
  13. </view>
  14. <view>
  15. <text>{{item.subTitle}}</text>
  16. </view>
  17. <view>
  18. <text>有效期至:</text>{{item.expiredTime}}</view>
  19. <view>
  20. <text></text>
  21. <text>立即使用</text>
  22. </view>
  23. </view>
  24. </view>
  25. </view>
  26. </view>