topicComment.wxml 827 B

12345678910111213141516171819202122
  1. <view class="comments">
  2. <view class="b">
  3. <view class="item" wx:for="{{comments}}" wx:key="id">
  4. <view class="info">
  5. <view class="user">
  6. <image src="{{item.userInfo.avatarUrl}}"></image>
  7. <text>{{item.userInfo.nickName}}</text>
  8. </view>
  9. <view class="time">{{item.addTime}}</view>
  10. </view>
  11. <view class="comment">{{item.content}}</view>
  12. <view class="imgs" wx:if="{{item.picList.length > 0}}">
  13. <image class="img" wx:for="{{item.picList}}" wx:key="id" wx:for-item="pitem" src="{{pitem.picUrl}}"></image>
  14. </view>
  15. <!--<view class="customer-service" wx:if="{{item.commentReplyVO}}">
  16. <text class="u">小选回复:</text>
  17. <text class="c">{{item.commentReplyVO.replyContent}}</text>
  18. </view>-->
  19. </view>
  20. </view>
  21. </view>