diff --git a/src/picker/PickerColumn.js b/src/picker/PickerColumn.js index 76ecb91d9..f9b586793 100644 --- a/src/picker/PickerColumn.js +++ b/src/picker/PickerColumn.js @@ -141,6 +141,10 @@ export default createComponent({ }, onClickItem(index) { + if (this.moving) { + return; + } + this.duration = DEFAULT_DURATION; this.setIndex(index, true); },