index.wxml 1.0 KB

1234567891011121314151617181920212223242526
  1. <view class="matchBox">
  2. <image src="" class="headerImg" />
  3. <view class="modelText">
  4. <view class="header">
  5. <image src="/static/modelBg.png" class="bg" />
  6. <view class="text">一年级朗读范文素材</view>
  7. </view>
  8. <view class="tips">
  9. 选择下面范文进行朗读
  10. </view>
  11. <swiper class="swiper" autoplay circular indicator-dots previous-margin='36px' next-margin='20px'
  12. indicator-active-color="#7ACAFF" indicator-color='#BABABA'>
  13. <block wx:for="{{bannerList}}" wx:key="id">
  14. <swiper-item bindtap='bannelEvent'>
  15. <image src="{{item.url}}" class="swiper-item" mode="" />
  16. </swiper-item>
  17. </block>
  18. </swiper>
  19. </view>
  20. <view class="rankList">
  21. <view class="switchBtns" bindtap="selectType">
  22. <view class="switchBtn {{currentType?'currentBtn currentBtn-l':''}}" data-type='true'>人气榜TOP100</view>
  23. <view class="switchBtn {{!currentType?'currentBtn currentBtn-r':''}}" data-type='false'>我的参赛作品</view>
  24. </view>
  25. </view>
  26. </view>