From 6fd174c2ddc64ef4c4fb8a56cf7c374abb4af90d Mon Sep 17 00:00:00 2001 From: gongfuxiang Date: Thu, 26 Dec 2024 01:05:57 +0800 Subject: [PATCH] =?UTF-8?q?=E5=90=8E=E5=8F=B0=E7=BB=9F=E8=AE=A1=E7=94=A8?= =?UTF-8?q?=E6=88=B7=E6=95=B0=E6=8D=AE=E7=BC=BA=E5=A4=B1=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/service/StatisticalService.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/service/StatisticalService.php b/app/service/StatisticalService.php index 8c4c2e0c9..5fad8265e 100755 --- a/app/service/StatisticalService.php +++ b/app/service/StatisticalService.php @@ -992,6 +992,7 @@ class StatisticalService $order_whole_country = self::OrderWholeCountryTotal($params); $renew_usert = self::NewUserTotal($params); $buy_user = self::BuyUserTotal($params); + $new_user = self::NewUserTotal($params); $ret = DataReturn('success', 0, [ 'order_profit' => $order_profit['data'], 'order_trading' => $order_trading['data'], @@ -1000,6 +1001,7 @@ class StatisticalService 'order_whole_country' => $order_whole_country['data'], 'renew_usert' => $renew_usert['data'], 'buy_user' => $buy_user['data'], + 'new_user' => $new_user['data'], ]); break;