feat(Calendar): add readonly prop (#4529)

* feat(Calendar): add readonly prop

* feat(Calendar): add comma after the new prop

* revise codes based on review opinions

* fix: 调整判断顺序

Co-authored-by: nemo-shen <kienshin626@gmail.com>
This commit is contained in:
Zhiqi Lin 2021-09-29 16:13:09 +08:00 committed by GitHub
parent 42738c9d39
commit 71e2e11fde
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 0 deletions

View File

@ -283,6 +283,7 @@ Page({
| confirm-text | 确认按钮的文字 | _string_ | `确定` |
| confirm-disabled-text | 确认按钮处于禁用状态时的文字 | _string_ | `确定` |
| first-day-of-week | 设置周起始日 | _0~6_ | `0` |
| readonly `v1.9.1` | 是否为只读状态,只读状态下不能选择日期 | _boolean_ | `false` |
### Poppable Props

View File

@ -125,6 +125,7 @@ VantComponent({
type: Number,
value: 0,
},
readonly: Boolean,
},
data: {
@ -274,6 +275,10 @@ VantComponent({
},
onClickDay(event) {
if (this.data.readonly) {
return;
}
const { date } = event.detail;
const { type, currentDate, allowSameDay } = this.data;