企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
* 店铺收藏列表 ~~~[api] get:/index.php?ctl=Buyer_Favorites&met=favoritesShop&typ=json string:k#key int:u#用户id curpage#第一页数据 page#每页显示数量 <<< success { "cmd_id": -140, "status": 200, "msg": "success", "data": { "page": 1, "total": 1, "totalsize": "3", "records": "3", "items": [ { "favorites_shop_id": "338", "user_id": "10014", "shop_id": "176", "shop_name": "test7", "shop_logo": "", "favorites_shop_time": "2017-11-14 18:10:33", "id": "338", "shop": { "shop_id": "176", "user_id": "10740", "user_name": "test7", "shop_name": "test7", "shop_grade_id": "0", ...... "goods_is_shelves": "1", "goods_recommended_price": "0.00", "goods_recommended_min_price": "0.00", "goods_recommended_max_price": "0.00", "goods_parent_id": "0", "id": "1692" } ], "shop_owner": 0, "dist_owner": 0, "is_favorite": 0 } ] } } }, ... ] } } <<< error ~~~ * 收藏店铺 ~~~[api] get:/index.php?ctl=Shop&met=addCollectShop&typ=json string:k#key int:u#用户id int:shop_id#店铺id <<< success {"cmd_id":-140,"status":200,"msg":"success","data":{"msg":"\u6536\u85cf\u6210\u529f\uff01"}} <<< error {"cmd_id":-140,"status":250,"msg":"failure","data":{"msg":"\u60a8\u5df2\u6536\u85cf\u8fc7\u8be5\u5e97\u94fa\uff01"}} ~~~ * 取消收藏店铺 ~~~[api] get:/index.php?ctl=Buyer_Favorites&met=delFavoritesShop&typ=json string:k#key int:u#用户id int:id#店铺id <<< success {"cmd_id":-140,"status":200,"msg":"success","data":{}} <<< error {"cmd_id":-140,"status":250,"msg":"failure","data":{}} ~~~ * * * * * * 商品收藏列表 ~~~[api] get:/index.php?ctl=Buyer_Favorites&met=favoritesGoods&typ=json string:k#key int:u#用户id curpage#第一页数据 page#每页显示数量 <<< success { "cmd_id": -140, "status": 200, "msg": "success", "data": { "page": 1, "total": 1, "totalsize": "16", "records": "16", "items": [ { "favorites_goods_id": "415", "user_id": "10014", "goods_id": "63", "favorites_goods_time": "2017-08-08 19:14:43", "id": "415", "detail": { "goods_id": "63", "common_id": "6", "shop_id": "12", "shop_name": "JZ的店铺", "goods_name": "连衣裙2017韩版大码女装春夏季新款收腰雪纺短袖长裙", "goods_promotion_tips": "", "cat_id": "3", "brand_id": "0", "goods_spec": { "i_2433": { "24": "蓝色", "33": "L" } }, .... } ] } } <<< error ~~~ * 收藏商品 ~~~[api] get:/index.php?ctl=Goods_Goods&met=collectGoods&typ=json string:k#key int:u#用户id int:goods_id#商品id <<< success {"cmd_id":-140,"status":200,"msg":"success","data":{"msg":"\u6536\u85cf\u6210\u529f\uff01"}} <<< error {"cmd_id":-140,"status":250,"msg":"failure","data":{"msg":"\u60a8\u5df2\u6536\u85cf\u8fc7\u8be5\u5546\u54c1\uff01"}} ~~~ * 取消收藏商品 ~~~[api] get:/index.php?ctl=Buyer_Favorites&met=delFavoritesGoods&typ=json string:k#key int:u#用户id int:id#商品id <<< success {"cmd_id":-140,"status":200,"msg":"success","data":{}} <<< error {"cmd_id":-140,"status":250,"msg":"failure","data":{}} ~~~