mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
fix(Calendar): render error when using rem unit (#7037)
This commit is contained in:
parent
f89f939377
commit
a0c10adbae
@ -258,8 +258,15 @@ export default createComponent({
|
|||||||
let height = 0;
|
let height = 0;
|
||||||
let currentMonth;
|
let currentMonth;
|
||||||
|
|
||||||
|
// add offset to avoid rem accuracy issues
|
||||||
|
// see: https://github.com/youzan/vant/issues/6929
|
||||||
|
const viewportOffset = 50;
|
||||||
|
const viewportTop = top - viewportOffset;
|
||||||
|
const viewportBottom = bottom + viewportOffset;
|
||||||
|
|
||||||
for (let i = 0; i < months.length; i++) {
|
for (let i = 0; i < months.length; i++) {
|
||||||
const visible = height <= bottom && height + heights[i] >= top;
|
const visible =
|
||||||
|
height <= viewportBottom && height + heights[i] >= viewportTop;
|
||||||
|
|
||||||
if (visible && !currentMonth) {
|
if (visible && !currentMonth) {
|
||||||
currentMonth = months[i];
|
currentMonth = months[i];
|
||||||
|
Loading…
x
Reference in New Issue
Block a user