topicComment.wxml 621 B

123456789101112131415161718
  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>
  16. </view>
  17. </view>