添加初始化搜索时间空判断

This commit is contained in:
mkm 2024-01-19 23:48:48 +08:00
parent 9bd04ab275
commit 0cc7583cb7

View File

@ -99,10 +99,13 @@ abstract class BaseDataLists implements ListsInterface
return [];
}
$startTime = $this->request->get('start_time');
$this->startTime = strtotime($startTime);
if($startTime){
$this->startTime = strtotime($startTime);
}
$endTime = $this->request->get('end_time');
$this->endTime = strtotime($endTime);
if($endTime){
$this->endTime = $startTime??strtotime($endTime);
}
$this->start = $this->request->get('start');
$this->end = $this->request->get('end');