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);