解决日期对话框不能自动关闭的问题

master
xxssyyyyssxx 2021-11-30 17:18:59 +08:00
parent 18e9e7342d
commit 82248b67f4
1 changed files with 7 additions and 1 deletions

View File

@ -138,7 +138,13 @@ function renderMonthDatePicker() {
$(".input-changeable-month-budget-plan").datepicker({ $(".input-changeable-month-budget-plan").datepicker({
format: 'yyyy-mm', format: 'yyyy-mm',
viewMode: 'years', viewMode: 'years',
minViewMode: 'months' minViewMode: 'months'/*,
autoClose:true*/
});
//解决不能自动关闭的问题
$(".am-datepicker-month").on("click", function() {
$(".am-datepicker").hide();
}); });
} }