fix: rate `autoFocus` not work and `blur` error
parent
228f4478a5
commit
c2c9841eb9
|
@ -13,6 +13,7 @@ export const RateProps = {
|
||||||
allowClear: PropTypes.bool,
|
allowClear: PropTypes.bool,
|
||||||
disabled: PropTypes.bool,
|
disabled: PropTypes.bool,
|
||||||
character: PropTypes.any,
|
character: PropTypes.any,
|
||||||
|
autoFocus: PropTypes.bool,
|
||||||
}
|
}
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
|
|
|
@ -149,11 +149,11 @@ export default {
|
||||||
this.$refs.rateRef.focus()
|
this.$refs.rateRef.focus()
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
// blur () {
|
blur () {
|
||||||
// if (!this.disabled) {
|
if (!this.disabled) {
|
||||||
// this.$refs.rateRef.blur()
|
this.$refs.rateRef.blur()
|
||||||
// }
|
}
|
||||||
// },
|
},
|
||||||
changeValue (value) {
|
changeValue (value) {
|
||||||
if (!hasProp(this, 'value')) {
|
if (!hasProp(this, 'value')) {
|
||||||
this.setState({
|
this.setState({
|
||||||
|
|
Loading…
Reference in New Issue