Rate support value null
This commit is contained in:
parent
c191f14737
commit
1bc9865960
1 changed files with 4 additions and 3 deletions
|
@ -81,12 +81,13 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
data () {
|
data () {
|
||||||
|
const value = this.value || 0;
|
||||||
return {
|
return {
|
||||||
prefixCls: prefixCls,
|
prefixCls: prefixCls,
|
||||||
hoverIndex: -1,
|
hoverIndex: -1,
|
||||||
isHover: false,
|
isHover: false,
|
||||||
isHalf: this.allowHalf && this.value.toString().indexOf('.') >= 0,
|
isHalf: this.allowHalf && value.toString().indexOf('.') >= 0,
|
||||||
currentValue: this.value
|
currentValue: value
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
|
@ -136,7 +137,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
return [
|
return [
|
||||||
{
|
{
|
||||||
[`${prefixCls}-star`]: !this.showCharacter,
|
[`${prefixCls}-star`]: !this.showCharacter,
|
||||||
[`${prefixCls}-star-chart`]: this.showCharacter,
|
[`${prefixCls}-star-chart`]: this.showCharacter,
|
||||||
[`${prefixCls}-star-full`]: (!isLast && full) || (isLast && !this.isHalf),
|
[`${prefixCls}-star-full`]: (!isLast && full) || (isLast && !this.isHalf),
|
||||||
|
|
Loading…
Add table
Reference in a new issue