1234567891011121314151617181920 |
- <My_liveAccountMsg title="浏览数据">
- <view wx:if="{{history.length>=1}}" slot='con' class="form-box clearfix">
- <view class="header">
- <view class="u-line-1" style="width: 155rpx;padding-left: 14rpx;">浏览用户</view>
- <view class="u-line-1" style="width: 135rpx;">浏览次数</view>
- <view class="u-line-1" style="width: 135rpx;">浏览时长</view>
- <view class="u-line-1" style="width: 225rpx;">最新浏览时间</view>
- </view>
- <view class="row {{viewRowIndex==index?'active':''}}" wx:for="{{history}}" data-index="{{index}}" catchtap="viewRow">
- <view class="u-line-1" style="width: 155rpx;padding-left: 14rpx;">{{item.fname}}</view>
- <view class="u-line-1" style="width: 135rpx;">{{item.freadcount}}</view>
- <view class="u-line-1" style="width: 135rpx;">{{item.freadtimes}}分钟</view>
- <view class="u-line-1" style="width: 225rpx;">{{item.ffirstreadtime}}</view>
- </view>
- <My_paging show="{{history.length>=1}}" count='{{pageNumber}}' bind:lifeClick='buttonLifeClick' bind:rightClick='buttonRightClick'></My_paging>
- </view>
- <view wx:else slot='con'>
- <My_pageReachBottom dummyStatus="{{history.length>=1}}" loadMore="{{pageNumber>=pageTotal}}"></My_pageReachBottom>
- </view>
- </My_liveAccountMsg>
|