12345678910111213141516171819202122232425262728293031323334353637 |
- <view class="container">
- <view class="message">被邀请用户为首次登录的用户</view>
- <view class="total">
- <view class="box">
- <view class="label">统计日期</view>
- <picker mode="date" value="{{date}}" fields="month" start="2023-09" end="2100-09"
- bindchange="bindDateChange">
- <view class="picker">
- {{date}} >
- </view>
- </picker>
- </view>
- <view class="box">
- <view class="label">成功邀请</view>
- <view>10人</view>
- </view>
- </view>
- <scroll-view class="historyList" scroll-y="true" enhanced show-scrollbar="{{false}}" scroll-top="{{scrollTop}}"
- bindscrolltolower='loadMore'>
- <view class="user" wx:for="{{20}}" wx:key='{{index}}'>
- <image src="https://reader-wx.ai160.com/reader/resource/20230215/1676472360368723.jpg" class="avatar" />
- <view class="info">
- <view class="nickName">刘聪{{index}}</view>
- <view class="addTime">
- 加入时间 :20230-08-27 14:00
- </view>
- </view>
- </view>
- </scroll-view>
- <view class="bottom">
- <button class="resetBtn btn" bindtap="openInvite">
- 邀请用户
- </button>
- </view>
- <emptyBg wx:if="{{nullList}}" message="暂无成功邀请记录"></emptyBg>
- <InvitePop id="InvitePop"></InvitePop>
- </view>
|