fix(Picker): change event untriggered without a transition (#5662)

This commit is contained in:
陈嘉涵 2020-02-15 19:24:05 +08:00
parent 9ff8e5635c
commit 6d6bdeea53

View File

@ -191,26 +191,29 @@ export default createComponent({
return option; return option;
}, },
setIndex(index, userAction) { setIndex(index, emitChange) {
index = this.adjustIndex(index) || 0; index = this.adjustIndex(index) || 0;
this.offset = -index * this.itemHeight;
const offset = -index * this.itemHeight;
const trigger = () => { const trigger = () => {
if (index !== this.currentIndex) { if (index !== this.currentIndex) {
this.currentIndex = index; this.currentIndex = index;
if (userAction) { if (emitChange) {
this.$emit('change', index); this.$emit('change', index);
} }
} }
}; };
// trigger the change event after transitionend when moving // trigger the change event after transitionend when moving
if (this.moving) { if (this.moving && offset !== this.offset) {
this.transitionEndTrigger = trigger; this.transitionEndTrigger = trigger;
} else { } else {
trigger(); trigger();
} }
this.offset = offset;
}, },
setValue(value) { setValue(value) {