diff --git a/app/adminapi/controller/CompanyController.php b/app/adminapi/controller/CompanyController.php index 8f5a95f77..d78087328 100644 --- a/app/adminapi/controller/CompanyController.php +++ b/app/adminapi/controller/CompanyController.php @@ -16,7 +16,6 @@ namespace app\adminapi\controller; -use app\adminapi\controller\BaseAdminController; use app\adminapi\lists\CompanyLists; use app\adminapi\logic\CompanyLogic; use app\adminapi\validate\CompanyValidate; @@ -25,7 +24,6 @@ use app\api\logic\SmsLogic; use app\common\model\auth\Admin; use app\common\model\Company; use think\facade\Db; -use think\view\driver\Think; /** * Company控制器 @@ -256,4 +254,19 @@ class CompanyController extends BaseAdminController return $this->success('success', $users, 1, 1); } + /** + * 所有成员公司 + * @param $id + * @return \think\response\Json + * @throws \think\db\exception\DataNotFoundException + * @throws \think\db\exception\DbException + * @throws \think\db\exception\ModelNotFoundException + */ + public function subordinate($id) + { + $company = Company::findOrEmpty($id); + $result = loopGetChild(Company::class, $company->id, 'level_one'); + return $this->success('success', $result, 1, 1); + } + } diff --git a/app/adminapi/lists/auth/AdminLists.php b/app/adminapi/lists/auth/AdminLists.php index 6ba8430b3..6fd5f89dd 100755 --- a/app/adminapi/lists/auth/AdminLists.php +++ b/app/adminapi/lists/auth/AdminLists.php @@ -75,6 +75,7 @@ class AdminLists extends BaseAdminDataLists implements ListsExtendInterface, Lis { return [ '%like%' => ['name', 'account'], + '=' => ['company_id'] ]; } diff --git a/app/common.php b/app/common.php index b34ae15d3..220304148 100755 --- a/app/common.php +++ b/app/common.php @@ -443,4 +443,25 @@ function get_login_admin($key = "") function get_config($key) { return \think\facade\Config::get($key); +} + +/** + * 循环获取子级 + * @param $model + * @param $id + * @param $parentKey + * @param $field + * @return array + */ +function loopGetChild($model, $id, $parentKey = 'pid', $field = '*') +{ + static $result = []; + $list = $model::where($parentKey, $id)->field($field)->select()->toArray(); + if ($list) { + foreach ($list as $v) { + $result[] = $v; + loopGetChild($model, $v['id'], $parentKey, $field); + } + } + return $result; } \ No newline at end of file