| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <view class="bg">
- <view class="inperson">
- <view class="inperson-top">
- <view class="top-part">
- <image src="{{mlistitem.invited_wx_user.head}}" class="inperson-head" wx:if="{{mlistitem.invited_wx_user.head}}"/>
- <image src="http://fohow.oss-cn-shenzhen.aliyuncs.com/xcx/image/icon/wx.png" class="inperson-head" wx:if="{{!mlistitem.invited_wx_user.head}}"/>
- <view class="inperson-name">{{mlistitem.invited_wx_user.nickname}}</view>
- <view class="inperson-man">月榜</view>
- <view class="clear"></view>
- </view>
- </view>
- <view class="top-change">
- <view class="top-changein">
- <view class="list-left" bindtap="prevmonth" wx:if="{{prevshow}}">
- <image src="http://fohow.oss-cn-shenzhen.aliyuncs.com/xcx/image/icon/left.png" class="list-lefticon" />
- <view class="list-leftmonth">{{upmonth == 0 ? 12 : upmonth}}月</view>
- </view>
- <view class="list-left" wx:if="{{!prevshow}}">
- <image src="http://fohow.oss-cn-shenzhen.aliyuncs.com/xcx/image/icon/noleft.png" class="list-lefticon" />
- <view class="list-leftmonth" style="color:#999">{{upmonth == 0 ? 12 : upmonth}}月</view>
- </view>
- <view class="change-time">{{year}}-{{month > 9 ? month : '0' + month}}</view>
- <view class="list-right" bindtap="nextmonth" wx:if="{{nextshow}}">
- <view class="list-rightmonth">{{downmonth == 13 ? 1 : downmonth}}月</view>
- <image src="http://fohow.oss-cn-shenzhen.aliyuncs.com/xcx/image/icon/right.png" class="list-righticon" />
- </view>
- <view class="list-right" wx:if="{{!nextshow}}">
- <view class="list-rightmonth" style="color:#999">{{downmonth == 13 ? 1 : downmonth}}月</view>
- <image src="http://fohow.oss-cn-shenzhen.aliyuncs.com/xcx/image/icon/noright.png" class="list-righticon" />
- </view>
- </view>
- </view>
- <view class="top-othor">
- <view class="top-othorin">
- <view class="inperson-count">好友数 : <text style="color:#eab86a">{{mlistitem.list_count}}人</text></view>
- <view class="inperson-count">本月消费好友 : <text style="color:#eab86a">{{mlistitem.month_consume}}人</text></view>
- <view class="inperson-count">本月帮你赚得 : <currency style="color:#eab86a" symbol="¥" value="{{mlistitem.total}}" ></currency></view>
- <view class="clear"></view>
- </view>
- </view>
- <view class="inperson-center">
- <!--
- <view class="inperson-change">
- <view class="inperson-total {{currentTab==0?'active':'active1'}}" data-current="0" bindtap="changenav">总榜</view>
- <view class="inperson-month {{currentTab==1?'active':'active1'}}" data-current="1" bindtap="changenav">本月</view>
- </view>-->
- <view class="inperson-item" wx:for="{{nextmlist}}" wx:key="{{index}}">
- <image src="{{item.head}}" class="inperson-ohead" wx:if="{{item.head}}"/>
- <image src="http://fohow.oss-cn-shenzhen.aliyuncs.com/xcx/image/icon/wx.png" class="inperson-ohead" wx:if="{{!item.head}}"/>
- <view class="inperson-oname">{{item.nickname}}</view>
- <view class="inperson-ocount"><currency style="color:#eab86a" symbol="" value="{{item.total}}" ></currency></view>
- </view>
- <!--
- <view class="inperson-item" wx:for="{{nextmlist}}" wx:key="{{index}}" hidden="{{ashow}}">
- <image src="{{item.head}}" class="inperson-ohead" wx:if="{{item.head}}"/>
- <image src="http://fohow.oss-cn-shenzhen.aliyuncs.com/xcx/image/icon/wx.png" class="inperson-ohead" wx:if="{{!item.head}}"/>
- <view class="inperson-oname">{{item.nickname}}</view>
- <view class="inperson-ocount"><currency style="color:#eab86a" symbol="" value="{{item.total}}" ></currency></view>
- </view>-->
- <view class="inperson-more" bindtap="getmonthlist1" wx:if="{{btnshow}}">加载更多</view>
- </view>
- </view>
- </view>
|