mineLike.wxml 754 B

123456789101112131415161718192021
  1. <!--pages/mineLike/mineLike.wxml-->
  2. <view class="comment-list" wx:for="{{dataList}}" wx:key="index" catchtap="toDetail" data-cid="{{item.outBusinessId}}">
  3. <image src="{{item.sender.headImg}}"></image>
  4. <view>
  5. <view class="comment-name">
  6. <text>{{item.sender.nickName}}</text>
  7. </view>
  8. <view class="comment-content">
  9. 点赞了你的{{item.srcType==2?'圈子':'评论'}}
  10. </view>
  11. <text class="comment-time">{{item.createTime}} {{item.sender.ipAddress}}</text>
  12. </view>
  13. <view class="action-img">
  14. <image mode="aspectFill" src="{{item.actionImg}}"></image>
  15. </view>
  16. </view>
  17. <view hidden="{{dataList.length!=0}}" class="nonedata-style">
  18. <image src="/static/img/hemaNo.png"></image>
  19. <text>暂无数据</text>
  20. </view>