mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
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:
parent
42738c9d39
commit
71e2e11fde
@ -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
|
||||
|
||||
|
@ -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;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user