日期控件清空结束时间设置开始默认值为2099-12-31

pull/149/MERGE
RuoYi 2020-03-14 15:34:33 +08:00
parent 82f8dadbae
commit 567ab47ae9
1 changed files with 3 additions and 3 deletions

View File

@ -66,9 +66,9 @@ $(function() {
startDate.config.max.month = date.month - 1;
startDate.config.max.date = date.date;
} else {
startDate.config.max.year = '';
startDate.config.max.month = '';
startDate.config.max.date = '';
startDate.config.max.year = '2099';
startDate.config.max.month = '12';
startDate.config.max.date = '31';
}
}
});