- <template name="starsTemplate">
- <view class="stars-container">
- <block wx:for="{{stars}}" wx:for-item="i" wx:key="key">
- <view class='stars-container-starsBox'>
- <image wx:if="{{i}}" src="/images/icon/star.png"> </image>
- <image wx:else src="/images/icon/none-star.png"></image>
- </view>
- </block>
- <view class='stars-container-score'>
- <text class="{{score==0?'stars-container-score-starScoreNull':'stars-container-score-starScore'}}">{{score==0?'暂无评分':score}}</text>
- </view>
- </view>
- </template>
|