commentList.wxml 1.1 KB

1234567891011121314151617181920212223
  1. <view>
  2. <view wx:if="{{compliment}}" class="top-cont">此菜品上周共获得<span>{{compliment}}</span>次点赞,获得<span>{{commentCount}}</span>次评论!</view>
  3. <scroll-view class="content" scroll-y="true" style="height: {{height}};" bindscrolltolower="scrollBottom">
  4. <view wx:for="{{commentList}}" wx:key="index" class="cont-width">
  5. <image class="logo" src="{{item.imgUrl ? item.imgUrl :'{{imgUrl}}/icon/user_logo.png'}}" alt="" binderror="imageError" data-index="{{index}}"></image>
  6. <view class="right">
  7. <view class="name">
  8. <view class="left">
  9. <span>{{item.nickName ? item.nickName : '匿名'}}</span>
  10. <span>{{item.createTime}}</span>
  11. </view>
  12. <view class="right-stars">
  13. <image style="margin: 0 2rpx;width: 22rpx;height: 22rpx;" wx:for="{{item.score}}" wx:key="index" src="{{imgUrl}}/icon/stars1.png" alt=""></image>
  14. </view>
  15. </view>
  16. <view class="cont">{{item.evaluation}}</view>
  17. <view class="image">
  18. <image wx:for="{{item.photoPath}}" src="{{baseUrl}}{{item.path}}" wx:key="index" alt="" />
  19. </view>
  20. </view>
  21. </view>
  22. </scroll-view>
  23. </view>