Commit 744bad1f authored by jesse-li's avatar jesse-li Committed by hetech

DateTimePicker: fix time-spinner not scroll to right position

parent 31cb7d30
...@@ -231,7 +231,7 @@ ...@@ -231,7 +231,7 @@
}, },
handleScroll(type) { handleScroll(type) {
const value = Math.min(Math.floor((this.$refs[type].wrap.scrollTop - (this.scrollBarHeight(type) * 0.5 - 10) / this.typeItemHeight(type) + 3) / this.typeItemHeight(type)), (type === 'hours' ? 23 : 59)); const value = Math.min(Math.round((this.$refs[type].wrap.scrollTop - (this.scrollBarHeight(type) * 0.5 - 10) / this.typeItemHeight(type) + 3) / this.typeItemHeight(type)), (type === 'hours' ? 23 : 59));
this.modifyDateField(type, value); this.modifyDateField(type, value);
}, },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment