grade_rank.wxml 573 B

123456789101112131415161718
  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. title="等级排名"
  14. height="{{height}}"/>
  15. </view>
  16. </scroll-view>
  17. </view>
  18. </view>