search($searchWhere)->when(count($where), function ($query) use ($where) { $query->where($where); })->field($field)->order('sort desc,id asc')->select()->toArray(); } /** * 配置分类列表 * @param array $where * @param int $page * @param int $limit * @return \think\Collection * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DbException * @throws \think\db\exception\ModelNotFoundException */ public function getConfgTabList(array $where, int $page, int $limit) { return $this->search($where)->order('sort desc,id asc')->page($page, $limit)->select(); } }