$account, "page" => $page, "size" => $size ]; return $this->curlGetApi("goodlife/v1/shop/poi/query/",$data); } /** * 获取来客绑定的所有分类 */ public function getStoreCategoryData(string $account): array { $data = [ "account_id" => $account, "query_category_type" => 1 ]; return $this->curlGetApi("goodlife/v1/goods/category/get/",$data); } /** * 查下商品模板 */ public function getStoreCategoryTemplate(string $category_id,int $product_type = 1): array { $data = compact("category_id","product_type"); return $this->curlGetApi("goodlife/v1/goods/template/get/",$data); } }