isAjax()) { $limit = input('param.limit'); $where = []; if (input('param.account')) { $where[] = ['account', 'like', '%' . input('param.account') . '%']; } $list = AdminLogic::getAdminList($where, '*', $limit); return $this->response->api($list->items() ? $list->items() : '', self::SUCCESS_CODE, '操作成功', ['count' => $list->total()]); } return $this->fetch(); } }