model = new Nav(); } /** * 获取导航列表 * @param array $where * @return array */ public function getList() { $field = 'id,nav_title,nav_url,sort,is_blank'; $order = 'sort desc'; $list = $this->model->field($field)->where([ [ 'is_show', '=', 1 ] ])->order($order)->select()->toArray(); return $list; } }