chatIndex.wxml 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <view class="container">
  2. <view class='top'>
  3. <view class='msg'> 如遇到以下情况可能是诈骗行为:</view>
  4. <view class="item-group">
  5. <view class="item">1.宝贝价格异常低</view>
  6. <view class="item">2.卖家要求QQ沟通</view>
  7. <view class="item">3.卖家要求直接汇款</view>
  8. </view>
  9. </view>
  10. <view class="result-list" wx:if="{{chatList.length > 0}}">
  11. <view class="chat" bindtap='navForm' data-id='{{item.lastChat.chatId}}' data-index='{{index}}' wx:for="{{chatList}}" wx:key="{{index}}">
  12. <view class="item">
  13. <view class='avatar-item'>
  14. <image class="avatar" mode='aspectFill' src="{{item.otherSide.avatarUrl}}"></image>
  15. <view class='badge' wx:if="{{item.unreadCount}}">
  16. <text class=' num'>{{item.unreadCount}}</text>
  17. </view>
  18. </view>
  19. <view class="info">
  20. <view class="t">
  21. <text class="name">{{item.otherSide.nickName}}</text>
  22. </view>
  23. <view class="time">{{item.lastChat.sendTime}}</view>
  24. <view class="b">
  25. <text class="chat-msg">{{item.lastChat.messageBody}}</text>
  26. </view>
  27. </view>
  28. <image class="img" mode='aspectFill' src="{{item.goods.primaryPicUrl}}"></image>
  29. </view>
  30. </view>
  31. </view>
  32. <view class="result-empty" wx:else>
  33. <view class="c">
  34. <image src="https://i.postimg.cc/v8KbQ4Sx/cry.png" />
  35. <text>您还没有聊天记录</text>
  36. </view>
  37. </view>
  38. </view>