feat(agent-home): 首页今日投注统计(tpbet)默认时间统一为 08:00:00~次日07:59:59

This commit is contained in:
2026-05-29 21:17:13 +08:00
parent 2d7b15c1ad
commit ca2513bb7a
+2 -2
View File
@@ -260,13 +260,13 @@ class Login extends Controller {
if($startDate){
$startTime = strtotime($startDate);
}else{
$startTime = strtotime(date('Y-m-d'));
$startTime = strtotime(date('Y-m-d') . ' 08:00:00');
$get['startDate'] = date('Y-m-d H:i:s',$startTime);
}
if($endDate){
$endTime = strtotime($endDate);
}else{
$endTime = time();
$endTime = strtotime(date('Y-m-d', strtotime('+1 day')) . ' 07:59:59');
$get['endDate'] = date('Y-m-d H:i:s',$endTime);
}
$where = array();