messageInform.axml 1014 B

123456789101112131415161718
  1. <view>
  2. <view class="flex-box-ce header">
  3. <view class="{{tabIndex==1? 'tabs':''}} flex-1" onTap="tabAction" data-index="1">未读 <text a:if="{{total}}" class="red">({{total}})</text></view>
  4. <view class="{{tabIndex==2? 'tabs':''}} flex-1" onTap="tabAction" data-index="2">已读</view>
  5. </view>
  6. <scroll-view class="scroll" a:if="{{list.length>0}}" scroll-y="{{true}}" onScrollToLower="onScrollToLower">
  7. <view a:for="{{list}}">
  8. <view class="backlog_list_tit">{{item.time}}</view>
  9. <view class="flex-box-ce item" a:for="{{item.list}}" a:for-item="e" data-item="{{e}}" catchTap="openDetail">
  10. <img-box name="{{e.userInfo.name}}" id="{{e.userInfo.id}}" height="70rpx" width="70rpx" fSize="24rpx"></img-box>
  11. <view class="flex-1 center">{{e.content}}</view>
  12. <text class="iconfont icon-jiantouyou"></text>
  13. </view>
  14. </view>
  15. <view class="noDatas" a:if="{{isData}}">没有更多咯</view>
  16. </scroll-view>
  17. <no-data a:if="{{list.length==0}}"></no-data>
  18. </view>