moreReplyItem.wxml 594 B

12345678910111213141516171819
  1. <import src="/pages/stars/stars.wxml" />
  2. <template name="moreReplyItemTemplate">
  3. <view class='moreReplyItem-container'>
  4. <view class='person'>
  5. <view class='headIconBox'>
  6. <image mode="aspectFill" src="{{headIcon}}" />
  7. </view>
  8. <view class='nickBox'>
  9. <text>{{nick}}</text>
  10. <template is="starsTemplate" data="{{stars:stars, score: score}}" />
  11. </view>
  12. </view>
  13. <view class='content'>
  14. <text class='contentText'>{{content}}
  15. </text>
  16. <text class='timeText'>{{time}}</text>
  17. </view>
  18. </view>
  19. </template>