stars-template.wxml 433 B

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