$("#enddate1").ligerDateEditor({ format: 'yyyyMMdd' });
$("#enddate1").ligerDateEditor({ format: 'yyyy-MM-dd' });
*最近拜访时间
$(function (){
//日期插件
$("#ZJBFSJ").ligerDateEditor({
format: "yyyy-MM-dd hh:mm:ss",//需要和后台返回日期样式完全一致"2019-06-25 16:24:06"
//format: "yyyy-MM-dd hh:mm",//需要和后台返回日期样式完全一致"2019-06-25 16:24"
showTime : true,
labelWidth : 120,
labelAlign : 'left'
});
})