fix: calendar change event call twice #82

This commit is contained in:
tangjinzhou 2018-07-27 10:12:56 +08:00
parent 4a51544bd6
commit 34f162b513

View File

@ -117,15 +117,14 @@ export default {
},
setValue (value, way) {
if (!hasProp(this, 'value')) {
this.setState({ sValue: value })
}
if (way === 'select') {
this.$emit('select', value)
this.$emit('change', value)
} else if (way === 'changePanel') {
this.onPanelChange(value, this.sMode)
}
if (!hasProp(this, 'value')) {
this.setState({ sValue: value })
}
},
setType (type) {