Merge pull request #5381 from johnsonwong666/hotfix/fix_issue_5288

fix(Calendar): fix month title sync
This commit is contained in:
landluck 2023-05-18 09:52:46 +08:00 committed by GitHub
commit 10795bf325
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 3 deletions

View File

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

View File

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

View File

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