与牧同行-兽医端小程序
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.

52 lines
1.8 KiB

  1. <!-- 纯净评价列表页 - 无tab,只有列表 -->
  2. <view class="page">
  3. <!-- 自定义列表 -->
  4. <view class="list-container">
  5. <!-- 评价项列表 -->
  6. <block wx:for="{{evaluations}}" wx:key="id" wx:for-index="idx">
  7. <!-- 评价卡片 -->
  8. <view class="evaluation-card" >
  9. <!-- 用户信息行:头像 + 昵称 + 时间 -->
  10. <view class="user-row">
  11. <!-- 头像区域(支持图片和文字占位) -->
  12. <view class="avatar-wrapper">
  13. <image class="avatar" src="{{item.avatar?baseUrl+item.avatar:'/pages/images/tx.png'}}" mode="aspectFill"></image>
  14. </view>
  15. <!-- 用户信息和时间 -->
  16. <view class="user-info">
  17. <view class="name-row">
  18. <text class="user-name">{{item.nickName?item.nickName:'用户'+idx}}</text>
  19. <text class="time">{{item.createdAt}}</text>
  20. </view>
  21. </view>
  22. </view>
  23. <!-- 评价内容 -->
  24. <view class="content-section">
  25. <rich-text class="content-text" space="emsp" nodes="{{item.content}}"></rich-text>
  26. </view>
  27. <!-- 底部装饰线(极简分隔) -->
  28. <view class="card-footer" wx:if="{{idx < evaluations.length - 1}}">
  29. <view class="divider"></view>
  30. </view>
  31. </view>
  32. </block>
  33. <!-- 空状态 -->
  34. <view class="empty-state" wx:if="{{evaluations.length === 0}}">
  35. <image class="empty-icon" src="/pages/images/kzt.png" mode="aspectFit"></image>
  36. <text class="empty-text">暂无评价</text>
  37. </view>
  38. <!-- 加载更多提示 -->
  39. <view class="load-more" wx:if="{{evaluations.length > 0}}">
  40. <text class="load-more-text">{{loadMoreText}}</text>
  41. </view>
  42. </view>
  43. </view>