chat-list.wxml 364 B

12345678910111213
  1. <import src="view/chat-item.wxml"/>
  2. <view class="chat-list">
  3. <view >
  4. <block wx:for="{{conversations}}" wx:key="conversationId">
  5. <template is="chat-item" data="{{item:item}}"/>
  6. </block>
  7. </view>
  8. </view>
  9. <view class="no-data" wx:if="{{conversations.length === 0}}">暂无数据</view>
  10. <no-more-bar wx:else />
  11. <tab-bar />