rating.wxml 894 B

123456789101112131415161718192021
  1. <view class="bar solid-bottom">
  2. <view class='ml-sm'>
  3. <text class='iconfont icon-titles success-text'></text>
  4. <text class='text-lg ml-xs'>星级评分</text>
  5. </view>
  6. </view>
  7. <view class='doc-main'>
  8. <view class='rating-item' wx:for="{{rating}}" wx:for-item="rat">
  9. <view class='rating-title'>{{rat.title}}</view>
  10. <view class='rating-star'>
  11. <text wx:for="{{5}}" class="iconfont {{index<rat.scores?'icon-favorfill warning-text':'icon-favor gray-text'}}" bindtap='setScores' data-id='{{rat.id}}' data-index='{{index+1}}'></text>
  12. </view>
  13. <view class='rating-text gray-text'>
  14. <text wx:if="{{rat.scores==5}}">非常好</text>
  15. <text wx:if="{{rat.scores==4}}">好</text>
  16. <text wx:if="{{rat.scores==3}}">一般</text>
  17. <text wx:if="{{rat.scores==2}}">差</text>
  18. <text wx:if="{{rat.scores==1}}">非常差</text>
  19. </view>
  20. </view>
  21. </view>