mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 19:41:45 +08:00
perf(Rate): remove unreachable code (#2332)
This commit is contained in:
parent
60ecf66954
commit
3ccb51c4c6
@ -21,7 +21,7 @@
|
||||
custom-class="van-rate"
|
||||
data-key="value3"
|
||||
value="{{ value3 }}"
|
||||
size="{{ 250 }}"
|
||||
size="{{ 25 }}"
|
||||
color="#ee0a24"
|
||||
void-color="#eee"
|
||||
void-icon="star"
|
||||
|
@ -12,10 +12,7 @@ VantComponent({
|
||||
readonly: Boolean,
|
||||
disabled: Boolean,
|
||||
allowHalf: Boolean,
|
||||
size: {
|
||||
type: null,
|
||||
observer: 'setSizeWithUnit'
|
||||
},
|
||||
size: null,
|
||||
icon: {
|
||||
type: String,
|
||||
value: 'star'
|
||||
@ -52,8 +49,7 @@ VantComponent({
|
||||
|
||||
data: {
|
||||
innerValue: 0,
|
||||
gutterWithUnit: undefined,
|
||||
sizeWithUnit: '20px'
|
||||
gutterWithUnit: undefined
|
||||
},
|
||||
|
||||
watch: {
|
||||
@ -65,12 +61,6 @@ VantComponent({
|
||||
},
|
||||
|
||||
methods: {
|
||||
setSizeWithUnit(val) {
|
||||
this.setData({
|
||||
sizeWithUnit: addUnit(val)
|
||||
});
|
||||
},
|
||||
|
||||
setGutterWithUnit(val) {
|
||||
this.setData({
|
||||
gutterWithUnit: addUnit(val)
|
||||
|
@ -8,7 +8,7 @@
|
||||
class="van-rate__item"
|
||||
wx:for="{{ count }}"
|
||||
wx:key="index"
|
||||
style="font-size: {{ sizeWithUnit }};padding-right: {{ index !== count - 1 ? gutterWithUnit : '' }}"
|
||||
style="padding-right: {{ index !== count - 1 ? gutterWithUnit : '' }}"
|
||||
>
|
||||
<van-icon
|
||||
name="{{ index + 1 <= innerValue ? icon : voidIcon }}"
|
||||
|
Loading…
x
Reference in New Issue
Block a user