|
|
@@ -319,6 +319,10 @@ function exportExcel(){
|
|
|
}else{
|
|
|
start_date += " 23:00:00";
|
|
|
end_date += " 23:00:00";
|
|
|
+ var start = new Date(start_date);
|
|
|
+ //开始日期取前一天的23:00
|
|
|
+ start.setDate(start.getDate()-1);
|
|
|
+ start_date = start.Format("yyyy-MM-dd HH:mm:ss");
|
|
|
}
|
|
|
window.open( getserveraddr() + "/file/score/item/info?start_date="+start_date+"&end_date="+end_date);
|
|
|
}
|