123456789101112131415161718192021222324252627282930313233343536 |
- <wxs src="../wxs/utils.wxs" module="utils" />
- <wxs src="../wxs/style.wxs" module="style" />
-
- <view
- class="{{ utils.bem('rate') }} custom-class"
- bind:touchmove="onTouchMove"
- >
- <view
- class="{{ utils.bem('rate__item') }}"
- wx:for="{{ innerCountArray }}"
- wx:key="index"
- style="{{ style({ paddingRight: index !== count - 1 ? utils.addUnit(gutter) : null }) }}"
- >
- <van-icon
- name="{{ index + 1 <= innerValue ? icon : voidIcon }}"
- class="{{ utils.bem('rate__icon', [{ disabled, full: index + 1 <= innerValue }])}}"
- style="{{ style({ fontSize: utils.addUnit(size) }) }}"
- custom-class="icon-class"
- data-score="{{ index }}"
- color="{{ disabled ? disabledColor : index + 1 <= innerValue ? color : voidColor }}"
- bind:click="onSelect"
- />
-
- <van-icon
- wx:if="{{ allowHalf }}"
- name="{{ index + 0.5 <= innerValue ? icon : voidIcon }}"
- class="{{ utils.bem('rate__icon', ['half', { disabled, full: index + 0.5 <= innerValue }]) }}"
- style="{{ style({ fontSize: utils.addUnit(size) }) }}"
- custom-class="icon-class"
- data-score="{{ index - 0.5 }}"
- color="{{ disabled ? disabledColor : index + 0.5 <= innerValue ? color : voidColor }}"
- bind:click="onSelect"
- />
- </view>
- </view>
|