getCompanyCount(); } /** * 获取基础统计信息 * * @return \think\response\Json */ public function index() { return json([ 'code' => 200, 'msg' => '获取成功', 'data' => [ 'companyCount' => $this->getCompanyCount(), 'adminCount' => $this->getAdminCount(), 'customerCount' => $this->getCustomerCount(), ] ]); } }