From 111a7fb1a2e0d9232a36b39e05d6cb0db6aa5c37 Mon Sep 17 00:00:00 2001 From: lingling <1077478963@qq.com> Date: Fri, 28 Feb 2025 17:39:44 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E4=BC=98=E5=8C=96=E7=94=A8=E6=88=B7?= =?UTF-8?q?=E6=9F=A5=E8=AF=A2=EF=BC=8C=E6=8C=89ID=E9=99=8D=E5=BA=8F?= =?UTF-8?q?=E6=8E=92=E5=88=97=E6=B3=A8=E5=86=8C=E5=92=8C=E7=BB=91=E5=AE=9A?= =?UTF-8?q?=E6=89=8B=E6=9C=BA=E5=8F=B7=E7=9A=84=E7=94=A8=E6=88=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/controller/admin/api/v1/PromotionController.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/controller/admin/api/v1/PromotionController.php b/app/controller/admin/api/v1/PromotionController.php index c07d61b..d5a53ef 100644 --- a/app/controller/admin/api/v1/PromotionController.php +++ b/app/controller/admin/api/v1/PromotionController.php @@ -117,12 +117,14 @@ class PromotionController // 获取注册的用户详细信息(筛选注册时间段) $res['register_user'] = User::whereIn('id', $users) ->whereBetween('created_at', [$startDate . ' 00:00:00', $endDate . ' 23:59:59']) // 时间范围筛选 + ->orderBy('id', 'desc') ->get(); // 获取绑定手机号的用户详细信息 $userIdsWithPhones = $UserPhone->pluck('user_id')->toArray(); // 获取绑定手机号的用户 ID 列表 $res['binding_user'] = User::whereIn('id', $userIdsWithPhones) ->whereBetween('created_at', [$startDate . ' 00:00:00', $endDate . ' 23:59:59']) // 时间范围筛选 + ->orderBy('id', 'desc') ->get(); return ApiResponse::success(200, $res);