From 14c882ff08800f4371dca282b233fff38dd8147b Mon Sep 17 00:00:00 2001 From: wong <106998207@qq.com> Date: Tue, 12 Aug 2025 15:02:30 +0800 Subject: [PATCH] =?UTF-8?q?=E8=8E=B7=E5=8F=96=E7=94=B5=E8=AF=9D=E5=BA=95?= =?UTF-8?q?=E5=B1=82=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Server/application/job/CallRecordingListJob.php | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/Server/application/job/CallRecordingListJob.php b/Server/application/job/CallRecordingListJob.php index 867afd605..95bd245c6 100644 --- a/Server/application/job/CallRecordingListJob.php +++ b/Server/application/job/CallRecordingListJob.php @@ -71,20 +71,15 @@ class CallRecordingListJob 'secondMin' => 0, 'secondMax' => 99999, 'departmentIds' => '', - 'from' => '2016-01-01 00:00:00', - 'to' => '2025-08-31 00:00:00', + 'from' => date('Y-m-d') . ' 00:00:00', + 'to' => date('Y-m-d') . ' 00:00:00', 'departmentId' => '' ]; - - // 设置请求信息 - $request = request(); - $request->withGet($params); - + // 调用通话记录列表获取方法 $result = $callRecordingController->getlist($params, true); $response = json_decode($result, true); - // 判断是否成功 if ($response['code'] == 200) { $data = $response['data'];