fix: 修复绑定手机号统计逻辑,确保用户唯一性计数

This commit is contained in:
lingling 2025-02-28 18:39:13 +08:00
parent 77e14921a1
commit b21a112022
1 changed files with 1 additions and 1 deletions

View File

@ -65,7 +65,7 @@ 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();
$binding=UserPhone::whereBetween('created_at', [ \Carbon\Carbon::createFromTimestamp($startOfDay)->toDateTimeString(), \Carbon\Carbon::createFromTimestamp($endOfDay)->toDateTimeString()])->distinct('user_id')->count('user_id');
$res['login']=$login;
$res['registration']=$registration;
$res['withdraw']=$withdraw;