topicComment.wxml 896 B

12345678910111213141516171819202122232425
  1. <view class="comments">
  2. <auth bindlogin="onShow" />
  3. <lip-sync />
  4. <view class="b">
  5. <view class="item" wx:for="{{comments}}" wx:key="{{item.id}}">
  6. <view class="info">
  7. <view class="user">
  8. <image src="{{item.user_info.avatar}}"></image>
  9. <text>{{item.user_info.nickname}}</text>
  10. </view>
  11. <view class="time">{{item.add_time}}</view>
  12. </view>
  13. <view class="comment">{{item.content}}</view>
  14. <view class="imgs" wx:if="{{item.pic_list.length > 0}}">
  15. <image class="img" wx:for="{{item.pic_list}}" wx:key="{{pitem.id}}" wx:for-item="pitem" src="{{pitem.pic_url}}"></image>
  16. </view>
  17. <!--<view class="customer-service" wx:if="{{item.commentReplyVO}}">
  18. <text class="u">小选回复:</text>
  19. <text class="c">{{item.commentReplyVO.replyContent}}</text>
  20. </view>-->
  21. </view>
  22. </view>
  23. </view>