fix(Calendar): fix wxs error on init when showConfirm is true (#2951)

fix #2949
This commit is contained in:
rex 2020-04-03 10:37:20 +08:00 committed by GitHub
parent 26fd387ee8
commit b23ff3ee89
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -16,6 +16,10 @@ function getMonths(minDate, maxDate) {
}
function getButtonDisabled(type, currentDate) {
if (currentDate == null) {
return true;
}
if (type === 'range') {
return !currentDate[0] || !currentDate[1];
}