From e1bba828d2fe554f08d80b48fa3e406afb33393b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BD=AD=E6=A1=83?= <1098598843@qq.com> Date: Wed, 15 Feb 2023 13:39:52 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8E=A5=E5=8F=A3=E4=BF=AE=E6=94=B92?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/api/controller/Statistics.php | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/app/api/controller/Statistics.php b/app/api/controller/Statistics.php index e7920b1..36527d7 100644 --- a/app/api/controller/Statistics.php +++ b/app/api/controller/Statistics.php @@ -546,12 +546,16 @@ class Statistics extends BaseController $num2 = Db::table('fa_szxc_information_usermsg')->where($map)->where('gender',1)->count(); //女 $num3 = Db::table('fa_szxc_information_usermsg')->where($map)->where('gender',2)->count(); + //已婚 + $num4 = Db::table('fa_szxc_information_usermsg')->where($map)->where('marital_status',170)->count(); + //未婚 + $num5 = Db::table('fa_szxc_information_usermsg')->where($map)->where('marital_status',169)->count(); $return = [ 'villagernum' => $num1, 'mannum' => $num2, 'wumannum' => $num3, - 'married' => 600, - 'unmarried' => 400, + 'married' => $num4, + 'unmarried' => $num5, 'skillnum' => 20, 'policynum' => 20, 'agriculture' => 20,