Commit 119188a6 authored by cinwell.li's avatar cinwell.li Committed by FuryBean

TimePicker: fix scrolltop error (#2054)

parent c639474f
......@@ -159,7 +159,7 @@
handleScroll(type) {
const ajust = {};
ajust[`${type}s`] = Math.min(Math.floor((this[`${type}Elm`].scrollTop - 80) / 32 + 3), 59);
ajust[`${type}s`] = Math.min(Math.floor((this[`${type}El`].scrollTop - 80) / 32 + 3), 59);
this.$emit('change', ajust);
},
......
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