index.wxml 332 B

12345678
  1. <view class="cat-rate custom-class">
  2. <view class="cat-rate__level">
  3. <block wx:for="{{ count }}" wx:key="key">
  4. <text class="cat-icon {{ index < value ? 'active' : '' }}" bindtap="onChange" data-index="{{ index }}"></text>
  5. </block>
  6. </view>
  7. <view class="cat-rate__label" hidden>{{ label[value - 1] }}</view>
  8. </view>