From 0cc7583cb7b077adc2f8b224850f784f68bdfd12 Mon Sep 17 00:00:00 2001 From: mkm <727897186@qq.com> Date: Fri, 19 Jan 2024 23:48:48 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E5=88=9D=E5=A7=8B=E5=8C=96?= =?UTF-8?q?=E6=90=9C=E7=B4=A2=E6=97=B6=E9=97=B4=E7=A9=BA=E5=88=A4=E6=96=AD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/common/lists/BaseDataLists.php | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/app/common/lists/BaseDataLists.php b/app/common/lists/BaseDataLists.php index 17cf9ad..3a37109 100644 --- a/app/common/lists/BaseDataLists.php +++ b/app/common/lists/BaseDataLists.php @@ -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');