stars.wxml 570 B

123456789101112131415161718
  1. <template name="starsTemplate">
  2. <view class="stars-container">
  3. <text class='nick'>{{buyer==null?'':buyer}}</text>
  4. <view class='personHot'>
  5. <view class="stars">
  6. <block wx:for="{{stars}}" wx:for-item="i" wx:key="key">
  7. <image wx:if="{{i}}" src="/images/icon/star.png"></image>
  8. <image wx:else src="/images/icon/none-star.png"></image>
  9. </block>
  10. </view>
  11. <view class='score'>
  12. <text class="{{score==0?'starScoreNull':'starScore'}}">{{score==0?'暂无评分':score}}</text>
  13. </view>
  14. </view>
  15. </view>
  16. </template>