From 77e14921a12d565fa8be096bbb3346758b5839d9 Mon Sep 17 00:00:00 2001 From: lingling <1077478963@qq.com> Date: Fri, 28 Feb 2025 18:26:51 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E5=A2=9E=E5=8A=A0=E7=BB=91=E5=AE=9A?= =?UTF-8?q?=E6=89=8B=E6=9C=BA=E5=8F=B7=E7=94=A8=E6=88=B7=E7=BB=9F=E8=AE=A1?= =?UTF-8?q?=E9=80=BB=E8=BE=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/controller/admin/api/v1/DashboardController.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/controller/admin/api/v1/DashboardController.php b/app/controller/admin/api/v1/DashboardController.php index 4276ec8..bdaf680 100644 --- a/app/controller/admin/api/v1/DashboardController.php +++ b/app/controller/admin/api/v1/DashboardController.php @@ -53,7 +53,7 @@ class DashboardController public function useranalysis_time(Request $request) { /** - * 登录人数 注册人数 提款人数 默认今天 + * 登录人数 注册人数 提款人数 绑定手机号用户 默认今天 */ $res = []; @@ -65,9 +65,11 @@ class DashboardController $login = User::whereBetween('login_time', [ $startOfDay, $endOfDay])->count(); $registration = User::whereBetween('created_at', [ \Carbon\Carbon::createFromTimestamp($startOfDay)->toDateTimeString(), \Carbon\Carbon::createFromTimestamp($endOfDay)->toDateTimeString()])->count(); $withdraw=Withdraw::whereBetween('createtime2', [ \Carbon\Carbon::createFromTimestamp($startOfDay)->toDateTimeString(), \Carbon\Carbon::createFromTimestamp($endOfDay)->toDateTimeString()])->count();; + $binding=UserPhone::whereBetween('created_at', [ \Carbon\Carbon::createFromTimestamp($startOfDay)->toDateTimeString(), \Carbon\Carbon::createFromTimestamp($endOfDay)->toDateTimeString()])->groupBy('user_id')->count(); $res['login']=$login; $res['registration']=$registration; $res['withdraw']=$withdraw; + $res['binding']=$binding; return ApiResponse::success(200, $res); } /**