You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.6 KiB
42 lines
1.6 KiB
<view class="container">
|
|
<view class="header">
|
|
<view class="tabs">
|
|
<text class="tab active" bindtap="onTabClick" data-tab="weekly">周榜</text>
|
|
<text class="tab" bindtap="onTabClick" data-tab="monthly">月榜</text>
|
|
<text class="tab" bindtap="onTabClick" data-tab="yearly">年榜</text>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="ranking-container">
|
|
<view class="rank-item-second">
|
|
<image class="crown-icon2" src="/assets/img/RollClass/RollClass3_2.png"/>
|
|
<image class="head-icon2" src="{{students[1].avatar}}"/>
|
|
<text class="name">{{students[1].name}}</text>
|
|
<text class="score">{{students[1].score}}</text>
|
|
</view>
|
|
<view class="rank-item-first">
|
|
<image class="crown-icon1" src="/assets/img/RollClass/RollClass3_1.png"/>
|
|
<image class="head-icon1" src="{{students[0].avatar}}"/>
|
|
<text class="name">{{students[0].name}}</text>
|
|
<text class="score">{{students[0].score}}</text>
|
|
</view>
|
|
<view class="rank-item-third">
|
|
<image class="crown-icon3" src="/assets/img/RollClass/RollClass3_3.png"/>
|
|
<image class="head-icon3" src="{{students[2].avatar}}"/>
|
|
<text class="name">{{students[2].name}}</text>
|
|
<text class="score">{{students[2].score}}</text>
|
|
</view>
|
|
</view>
|
|
|
|
</view>
|
|
|
|
<view class="container2">
|
|
<view class="ranking-list">
|
|
<view class="rank-item" wx:for="{{rankings}}" wx:key="index">
|
|
<text class="rank">{{item.rank}}</text>
|
|
<image class="icon" src="{{item.avatar}}" />
|
|
<text class="name">{{item.name}}</text>
|
|
<text class="score">{{item.score}}</text>
|
|
</view>
|
|
</view>
|
|
</view> |