mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 19:41:45 +08:00
fix(calendar): confirmDisabledText增加默认值和文档同步 (#3394)
* fix(calendar): confirmDisabledText增加默认值和文档同步 * fix(datetime-picker): 默认值为string 解析时间错误
This commit is contained in:
parent
97c2a458b0
commit
c304655dc9
5
dist/calendar/index.js
vendored
5
dist/calendar/index.js
vendored
@ -41,7 +41,10 @@ VantComponent({
|
||||
},
|
||||
},
|
||||
allowSameDay: Boolean,
|
||||
confirmDisabledText: String,
|
||||
confirmDisabledText: {
|
||||
type: String,
|
||||
value: '确定',
|
||||
},
|
||||
type: {
|
||||
type: String,
|
||||
value: 'single',
|
||||
|
4
dist/datetime-picker/index.js
vendored
4
dist/datetime-picker/index.js
vendored
@ -203,8 +203,8 @@ VantComponent({
|
||||
return `${hour}:${minute}`;
|
||||
}
|
||||
// date type
|
||||
value = Math.max(value, data.minDate);
|
||||
value = Math.min(value, data.maxDate);
|
||||
value = Math.max(new Date(value).getTime(), data.minDate);
|
||||
value = Math.min(new Date(value).getTime(), data.maxDate);
|
||||
return value;
|
||||
},
|
||||
getBoundary(type, innerValue) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user