make(BaseAuth::class)->________(array_keys($where), $this->setModel()); $whereData = []; foreach ($whereKey as $key) { if (isset($where[$key]) && 'timeKey' !== $key) { $whereData[$key] = $where[$key]; } } return $this->getModel()->withSearch($with, $where)->when($authWhere && $whereData, function ($query) use ($whereData) { $query->where($whereData); }); } /** * @param array $where * @param bool $authWhere * @return int */ public function count(array $where = [], bool $authWhere = true): int { return $this->searchWhere($where, $authWhere)->count(); } /** * 搜索 * @param array $where * @param array|string[] $field * @param int $page * @param int $limit * @param null $sort * @param array $with * @return array */ public function getDataList(array $where, array $field = ['*'], int $page = 0, int $limit = 0, $sort = null, array $with = []) { return $this->searchWhere($where)->when($page && $limit, function ($query) use ($page, $limit) { $query->page($page, $limit); })->when(!$page && $limit, function ($query) use ($limit) { $query->limit($limit); })->when($sort, function ($query, $sort) { if (is_array($sort)) { foreach ($sort as $k => $v) { if (is_numeric($k)) { $query->order($v, 'desc'); } else { $query->order($k, $v); } } } else { $query->order($sort, 'desc'); } })->field($field)->with($with)->select()->toArray(); } }