与牧同行-小程序用户端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
1.2 KiB

  1. <view class="chat-list">
  2. <block wx:for="{{chatSessions}}" wx:key="index">
  3. <!-- 列表项 -->
  4. <view class="list-item" bindtap="goToChat" data-id="{{item.otherUserId}}">
  5. <!-- 头像区域 -->
  6. <view class="avatar">
  7. <image src="{{item.otherUserAvatar ? baseUrl + item.otherUserAvatar : '/pages/images/tx.png'}}" mode="aspectFill"></image>
  8. </view>
  9. <!-- 内容区域 -->
  10. <view class="content">
  11. <view class="info-row">
  12. <text class="username">{{item.otherUserName || '未知用户'}}</text>
  13. <text class="time">{{item.formattedTime}}</text>
  14. </view>
  15. <view class="message-row">
  16. <view wx:if="{{!item.lastMessage || item.lastMessage === '[暂无消息]'}}"
  17. class="last-message empty">
  18. {{item.lastMessage || '[暂无消息]'}}
  19. </view>
  20. <view wx:else
  21. class="last-message normal">
  22. {{item.lastMessage}}
  23. </view>
  24. </view>
  25. </view>
  26. </view>
  27. </block>
  28. <!-- 空状态提示 -->
  29. <view class="empty-state" wx:if="{{chatSessions.length === 0}}">
  30. <text>暂无聊天记录</text>
  31. </view>
  32. </view>