[bug fix] DatetimePicker: 修复设置了minDate时初始value错误 (#942)

This commit is contained in:
rex 2018-11-25 09:26:29 +08:00 committed by neverland
parent f9a9c8ccdc
commit c0e60fcf57

View File

@ -1,7 +1,8 @@
import { VantComponent } from '../common/component';
import { isDef } from '../common/utils';
const currentYear = new Date().getFullYear();
const isValidDate = date => !isNaN(new Date(date).getTime());
const isValidDate = date => isDef(date) && !isNaN(new Date(date).getTime());
function range(num, min, max) {
return Math.min(Math.max(num, min), max);
@ -169,12 +170,8 @@ VantComponent({
}
// date type
const { maxYear, maxDate, maxMonth, maxHour, maxMinute } = this.getBoundary('max', value);
const { minYear, minDate, minMonth, minHour, minMinute } = this.getBoundary('min', value);
const minDay = new Date(minYear, minMonth - 1, minDate, minHour, minMinute);
const maxDay = new Date(maxYear, maxMonth - 1, maxDate, maxHour, maxMinute);
value = Math.max(value, minDay.getTime());
value = Math.min(value, maxDay.getTime());
value = Math.max(value, data.minDate);
value = Math.min(value, data.maxDate);
return value;
},