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.
|
|
<!--pages/gradeOrder/gradeOrder.wxml-->
|
|
|
<view>
|
|
|
<view class="header"></view>
|
|
|
<view class="contentContainer">
|
|
|
<view class="content">
|
|
|
<view class="personalInfo">
|
|
|
<image class="avator" src="{{userInfo.avatar}}" ></image>
|
|
|
<text>测试平均分:{{avg_score}}分 </text>
|
|
|
<text> 当前排名:{{rank}}位</text>
|
|
|
</view>
|
|
|
<view class="orderList">
|
|
|
|
|
|
<view wx:for="{{lists}}" class="orderListItem wx:if='{{index%2 == 1 ? 'stripe' : ''}}' ">
|
|
|
<view>
|
|
|
<text>{{item.pm}}</text>
|
|
|
<text class="userName">{{item.nickname}}</text>
|
|
|
</view>
|
|
|
<text>测试平均分:{{item.avg_score}}</text>
|
|
|
</view>
|
|
|
|
|
|
</view>
|
|
|
</view>
|
|
|
<button class="zixun" open-type='contact' >
|
|
|
<image src="../img/zixun.png"></image>
|
|
|
</button>
|
|
|
</view>
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|