index.wxml 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <view class="container">
  2. <view class="message">被邀请用户为首次登录的用户</view>
  3. <view class="total">
  4. <view class="box">
  5. <view class="label">统计日期</view>
  6. <picker mode="date" value="{{date}}" fields="month" start="2023-09" end="2100-09"
  7. bindchange="bindDateChange">
  8. <view class="picker">
  9. {{date}} >
  10. </view>
  11. </picker>
  12. </view>
  13. <view class="box">
  14. <view class="label">成功邀请</view>
  15. <view>10人</view>
  16. </view>
  17. </view>
  18. <scroll-view class="historyList" scroll-y="true" enhanced show-scrollbar="{{false}}" scroll-top="{{scrollTop}}"
  19. bindscrolltolower='loadMore'>
  20. <view class="user" wx:for="{{20}}" wx:key='{{index}}'>
  21. <image src="https://reader-wx.ai160.com/reader/resource/20230215/1676472360368723.jpg" class="avatar" />
  22. <view class="info">
  23. <view class="nickName">刘聪{{index}}</view>
  24. <view class="addTime">
  25. 加入时间 :20230-08-27 14:00
  26. </view>
  27. </view>
  28. </view>
  29. </scroll-view>
  30. <view class="bottom">
  31. <button class="resetBtn btn" bindtap="openInvite">
  32. 邀请用户
  33. </button>
  34. </view>
  35. <emptyBg wx:if="{{nullList}}" message="暂无成功邀请记录"></emptyBg>
  36. <InvitePop id="InvitePop"></InvitePop>
  37. </view>