mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
16 lines
355 B
Plaintext
16 lines
355 B
Plaintext
<view
|
|
class="van-rate custom-class"
|
|
bind:touchmove="onTouchMove"
|
|
>
|
|
<van-icon
|
|
wx:for="{{ list }}"
|
|
wx:key="index"
|
|
class="van-rate__item"
|
|
size="{{ size }}px"
|
|
data-index="{{ index }}"
|
|
name="{{ item ? icon : voidIcon }}"
|
|
color="{{ disabled ? disabledColor : item ? color : voidColor }}"
|
|
bind:click="onSelect"
|
|
/>
|
|
</view>
|