From 6d6bdeea5358dfd88a38fcd91b53e82cbd8f7214 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=88=E5=98=89=E6=B6=B5?= Date: Sat, 15 Feb 2020 19:24:05 +0800 Subject: [PATCH] fix(Picker): change event untriggered without a transition (#5662) --- src/picker/PickerColumn.js | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/src/picker/PickerColumn.js b/src/picker/PickerColumn.js index 21c480721..62f9490af 100644 --- a/src/picker/PickerColumn.js +++ b/src/picker/PickerColumn.js @@ -191,26 +191,29 @@ export default createComponent({ return option; }, - setIndex(index, userAction) { + setIndex(index, emitChange) { index = this.adjustIndex(index) || 0; - this.offset = -index * this.itemHeight; + + const offset = -index * this.itemHeight; const trigger = () => { if (index !== this.currentIndex) { this.currentIndex = index; - if (userAction) { + if (emitChange) { this.$emit('change', index); } } }; // trigger the change event after transitionend when moving - if (this.moving) { + if (this.moving && offset !== this.offset) { this.transitionEndTrigger = trigger; } else { trigger(); } + + this.offset = offset; }, setValue(value) {