glanceover.wxml 1.3 KB

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