service = $service; } public function home() { return $this->ok([ "banner" => $this->service->banner(), "categoryTree" => [ [ "id" => 1, "name" => "一级分类", "child" => [ [ "id" => 1, "name" => "二级分类", ], ], ], ], "hot_goods" => [ [ "id" => 1, "name" => "商品名称", "thumb" => Image::imageUrl(), ], ], "recommend_goods" => [ [ "id" => 1, "name" => "商品名称", "thumb" => Image::imageUrl(), ], ], ]); } public function categoryTree() { return $this->ok([ "categoryTree" => [ [ "id" => 1, "name" => "一级分类", "child" => [ [ "id" => 1, "name" => "二级分类", "child" => [ [ "id" => 1, "name" => "二级分类", ], ], ], ], ], ], ]); } }