解决日期对话框不能自动关闭的问题
parent
18e9e7342d
commit
82248b67f4
src/main/resources/static/assets/js
|
@ -138,7 +138,13 @@ function renderMonthDatePicker() {
|
|||
$(".input-changeable-month-budget-plan").datepicker({
|
||||
format: 'yyyy-mm',
|
||||
viewMode: 'years',
|
||||
minViewMode: 'months'
|
||||
minViewMode: 'months'/*,
|
||||
autoClose:true*/
|
||||
});
|
||||
|
||||
//解决不能自动关闭的问题
|
||||
$(".am-datepicker-month").on("click", function() {
|
||||
$(".am-datepicker").hide();
|
||||
});
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue