quantity_rank.wxml 598 B

12345678910111213141516171819
  1. <!--pages/competition/competition.wxml-->
  2. <view class="container">
  3. <!-- 标题 -->
  4. <rank-tarbar/>
  5. <!-- 内容 -->
  6. <view class="content">
  7. <scroll-view scroll-y="true" scroll-with-animation="true" scroll-with-animation="true" enable-back-to-top="true">
  8. <view class="my-friend-rank">
  9. <ranking
  10. friendsData="{{friendsData}}"
  11. friendsThreeData="{{friendsThreeData}}"
  12. myData="{{myData}}"
  13. str="题"
  14. title="答题量排名"
  15. height="{{height}}"/>
  16. </view>
  17. </scroll-view>
  18. </view>
  19. </view>