From ffb09672743a3091e665e6ce307b25ab4286eefe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=88=E5=98=89=E6=B6=B5?= Date: Tue, 18 Feb 2020 10:03:39 +0800 Subject: [PATCH] fix(Calendar): add Math.floor to avoid decimal height issues (#5640) --- src/calendar/index.js | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/src/calendar/index.js b/src/calendar/index.js index 555f7a99c..864309d33 100644 --- a/src/calendar/index.js +++ b/src/calendar/index.js @@ -152,7 +152,11 @@ export default createComponent({ initRect() { this.$nextTick(() => { - this.bodyHeight = this.$refs.body.getBoundingClientRect().height; + // add Math.floor to avoid decimal height issues + // https://github.com/youzan/vant/issues/5640 + this.bodyHeight = Math.floor( + this.$refs.body.getBoundingClientRect().height + ); this.onScroll(); }); }, @@ -176,8 +180,6 @@ export default createComponent({ return false; }); - - this.onScroll(); }); }, @@ -208,13 +210,13 @@ export default createComponent({ } let height = 0; - let firstMonth; + let currentMonth; for (let i = 0; i < months.length; i++) { const visible = height <= bottom && height + heights[i] >= top; - if (visible && !firstMonth) { - firstMonth = months[i]; + if (visible && !currentMonth) { + currentMonth = months[i]; } months[i].visible = visible; @@ -222,8 +224,8 @@ export default createComponent({ } /* istanbul ignore else */ - if (firstMonth) { - this.monthTitle = firstMonth.title; + if (currentMonth) { + this.monthTitle = currentMonth.title; } },