<input type="submit" class="btn btn-primary" id="check" th:value="搜索"/>
<input type="button" class="btn btn-success active" id="export" onclick="exportExcel()" th:value="导出" />
//导出
function exportExcel(){
window.location.href="/co/biservicereportbyday/exportExcel";
$('#export').prop('disabled', true);
window.setTimeout("tick()",5000);
};
function tick(){
$('#export').prop('disabled', false);
}
//点击查询之前校验
$('#check').click(function(){
var s = $('#startdate').val();
var e = $('#enddate').val();
if(s != "" && e == ""){
alert("请选择营业结束日期!");
return;
}
//校验开始结束日期是否在同一个月
if(s.substr(5,2) != e.substr(5,2)){
alert("不能隔月查询,请重新选择!");
$('#enddate').val("");
return;
}
});