fix(Calendar): fix month title sync

This commit is contained in:
johnsonwong666 2023-05-17 10:02:45 +08:00
parent 57859ac402
commit a140117e8b
3 changed files with 5 additions and 3 deletions

View File

@ -257,10 +257,12 @@ Page({
```css
.calendar {
--calendar-height: 500px;
--calendar-height: 618px;
}
```
> Tips: 注意在自定义calendar的高度时需要确保滚动到当前月份时所有的日期要展现在.van-calendar__body内否则可能会出现滚动时头部月份与当前月份不同步的情况。目前平铺型预设高度618px,弹窗型高度90%。
## API
### Props

View File

@ -1,3 +1,3 @@
.tiled-calendar {
--calendar-height: 500px;
--calendar-height: 618px;
}

View File

@ -123,7 +123,7 @@
// Calendar
@calendar-height: 100%;
@calendar-background-color: @white;
@calendar-popup-height: 80%;
@calendar-popup-height: 90%;
@calendar-header-box-shadow: 0 2px 10px rgba(125, 126, 128, 0.16);
@calendar-header-title-height: 44px;
@calendar-header-title-font-size: @font-size-lg;