// +---------------------------------------------------------------------- namespace app\model; use think\Model; /** * @title: ่œๅ•ๆจกๅž‹ */ class Menu extends Model { public function getAuthMenuList(){ $list = $this->select(); $data = list_to_tree($list->toArray(), 'id', 'pid'); return $data; } }