40 lines
1.9 KiB
Plaintext
40 lines
1.9 KiB
Plaintext
<!--subpackage/team/rank/rank.wxml-->
|
|
<view class="page-content pad">
|
|
<mp-bar background="linear-gradient(190deg, #49a5fc 0%, #f7f7f7 800rpx, #f7f7f7 100%)" title="排行" color="#fff"></mp-bar>
|
|
|
|
<view class="progress">
|
|
<view class="progress-box" style="width: {{percent}};">{{complete}}</view>
|
|
<view class="right">{{no}}</view>
|
|
<image src="https://yuedong-wechatapplet.oss-cn-shanghai.aliyuncs.com/static/team/golosd.png" style="left: {{left}};" class="posi"/>
|
|
</view>
|
|
|
|
|
|
<view class="card">
|
|
<view class="ever" wx:for="{{otherList}}" wx:key="index">
|
|
<!-- <view class="index">{{item.ranking}}</view> -->
|
|
<image src="https://yuedong-wechatapplet.oss-cn-shanghai.aliyuncs.com/static/room/avater.png" class="ava" />
|
|
<view class="ever-box">{{item.nickName||'会员'}}</view>
|
|
<view class="ever-box">
|
|
<image src="https://yuedong-wechatapplet.oss-cn-shanghai.aliyuncs.com/static/team/Base_success.png" mode="" />
|
|
{{item.amount}}
|
|
</view>
|
|
<view class="ever-box">
|
|
<image src="https://yuedong-wechatapplet.oss-cn-shanghai.aliyuncs.com/static/team/Time_stopwatch.png" mode="" />
|
|
{{item.duration}}s
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
|
|
<view class="bottom" style="height: {{status == 1 ? '320rpx' : '250rpx'}};">
|
|
<view class="btn" bind:tap="goSport" wx:if="{{status == 1}}">去运动</view>
|
|
<view class="my ever">
|
|
<image src="{{user.headImageUrl && user.headImageUrl != ''? user.headImageUrl : 'https://yuedong-wechatapplet.oss-cn-shanghai.aliyuncs.com/static/room/avater.png'}}" class="ava" />
|
|
<view class="ever-box">{{user.userTrueName || '会员'}}</view>
|
|
<view class="ever-box">
|
|
<text>{{contribute == 0 ? '暂无贡献':('我的贡献:'+contribute)}}</text>
|
|
<image src="https://yuedong-wechatapplet.oss-cn-shanghai.aliyuncs.com/static/team/paihang.png" style="margin-left: 30rpx;" />
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view> |