unboxingdetails.wxml 468 B

123456789101112131415
  1. <view class="container">
  2. <view class="title">
  3. <image src="{{comment.userHadeUrl}}"></image>
  4. <text>{{comment.userName}}</text>
  5. </view>
  6. <view class="goodsInfo">
  7. <text>{{comment.goodsInfo}}</text>
  8. </view>
  9. <view class="comment-text">
  10. <text>{{comment.text}}</text>
  11. </view>
  12. <view class="goods-img">
  13. <image wx:for="{{comment.userImages}}" wx:key="*this" src="{{item}}" bindtap='' lazy-load="true" mode="aspectFill"></image>
  14. </view>
  15. </view>