month.wxml 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <view class="bg">
  2. <view class="inperson">
  3. <view class="inperson-top">
  4. <view class="top-part">
  5. <image src="{{mlistitem.invited_wx_user.head}}" class="inperson-head" wx:if="{{mlistitem.invited_wx_user.head}}"/>
  6. <image src="http://fohow.oss-cn-shenzhen.aliyuncs.com/xcx/image/icon/wx.png" class="inperson-head" wx:if="{{!mlistitem.invited_wx_user.head}}"/>
  7. <view class="inperson-name">{{mlistitem.invited_wx_user.nickname}}</view>
  8. <view class="inperson-man">月榜</view>
  9. <view class="clear"></view>
  10. </view>
  11. </view>
  12. <view class="top-change">
  13. <view class="top-changein">
  14. <view class="list-left" bindtap="prevmonth" wx:if="{{prevshow}}">
  15. <image src="http://fohow.oss-cn-shenzhen.aliyuncs.com/xcx/image/icon/left.png" class="list-lefticon" />
  16. <view class="list-leftmonth">{{upmonth == 0 ? 12 : upmonth}}月</view>
  17. </view>
  18. <view class="list-left" wx:if="{{!prevshow}}">
  19. <image src="http://fohow.oss-cn-shenzhen.aliyuncs.com/xcx/image/icon/noleft.png" class="list-lefticon" />
  20. <view class="list-leftmonth" style="color:#999">{{upmonth == 0 ? 12 : upmonth}}月</view>
  21. </view>
  22. <view class="change-time">{{year}}-{{month > 9 ? month : '0' + month}}</view>
  23. <view class="list-right" bindtap="nextmonth" wx:if="{{nextshow}}">
  24. <view class="list-rightmonth">{{downmonth == 13 ? 1 : downmonth}}月</view>
  25. <image src="http://fohow.oss-cn-shenzhen.aliyuncs.com/xcx/image/icon/right.png" class="list-righticon" />
  26. </view>
  27. <view class="list-right" wx:if="{{!nextshow}}">
  28. <view class="list-rightmonth" style="color:#999">{{downmonth == 13 ? 1 : downmonth}}月</view>
  29. <image src="http://fohow.oss-cn-shenzhen.aliyuncs.com/xcx/image/icon/noright.png" class="list-righticon" />
  30. </view>
  31. </view>
  32. </view>
  33. <view class="top-othor">
  34. <view class="top-othorin">
  35. <view class="inperson-count">好友数 : <text style="color:#eab86a">{{mlistitem.list_count}}人</text></view>
  36. <view class="inperson-count">本月消费好友 : <text style="color:#eab86a">{{mlistitem.month_consume}}人</text></view>
  37. <view class="inperson-count">本月帮你赚得 : <currency style="color:#eab86a" symbol="¥" value="{{mlistitem.total}}" ></currency></view>
  38. <view class="clear"></view>
  39. </view>
  40. </view>
  41. <view class="inperson-center">
  42. <!--
  43. <view class="inperson-change">
  44. <view class="inperson-total {{currentTab==0?'active':'active1'}}" data-current="0" bindtap="changenav">总榜</view>
  45. <view class="inperson-month {{currentTab==1?'active':'active1'}}" data-current="1" bindtap="changenav">本月</view>
  46. </view>-->
  47. <view class="inperson-item" wx:for="{{nextmlist}}" wx:key="{{index}}">
  48. <image src="{{item.head}}" class="inperson-ohead" wx:if="{{item.head}}"/>
  49. <image src="http://fohow.oss-cn-shenzhen.aliyuncs.com/xcx/image/icon/wx.png" class="inperson-ohead" wx:if="{{!item.head}}"/>
  50. <view class="inperson-oname">{{item.nickname}}</view>
  51. <view class="inperson-ocount"><currency style="color:#eab86a" symbol="" value="{{item.total}}" ></currency></view>
  52. </view>
  53. <!--
  54. <view class="inperson-item" wx:for="{{nextmlist}}" wx:key="{{index}}" hidden="{{ashow}}">
  55. <image src="{{item.head}}" class="inperson-ohead" wx:if="{{item.head}}"/>
  56. <image src="http://fohow.oss-cn-shenzhen.aliyuncs.com/xcx/image/icon/wx.png" class="inperson-ohead" wx:if="{{!item.head}}"/>
  57. <view class="inperson-oname">{{item.nickname}}</view>
  58. <view class="inperson-ocount"><currency style="color:#eab86a" symbol="" value="{{item.total}}" ></currency></view>
  59. </view>-->
  60. <view class="inperson-more" bindtap="getmonthlist1" wx:if="{{btnshow}}">加载更多</view>
  61. </view>
  62. </view>
  63. </view>