model = new FriendlyLink(); } /** * 获取友情链接 * @param array $where * @return array */ public function getList() { $field = 'id,link_title,link_url,link_pic,link_sort'; $order = 'link_sort desc'; $list = $this->model->field($field)->where([['is_show', '=', 1]])->order($order)->select()->toArray(); return $list; } }