文档
测试

购物车列表

POST
/Home/Cart/myCart

请求参数

参数名
类型
描述
必填
app_user_id
String
用户id
必填
country_id
Number
国家id
必填
currency_id
Number
货币id
必填
host
String
站点域名
必填
lang_id
Number
语言id
必填

响应参数

参数名
类型
描述
必填
status
Number
状态
必填
msg
String
提示信息
必填
data
Array
购物车列表数据
必填

说明 / 示例

```js { "status": 1, "msg": "Success", "data": { "data": [{ "type": 1, "cart_id": "10139", // 购物车id "num": "1", // 商品数量 "data": { "spu": "275304", // spu "id": "38128", // "p_id": "38127", // 产品id "status": "0", "title": "100X Plastic Garden Plant Flower Pots", // 商品标题 "price_member": 28.95, // 会员价 "price_market": "28.95", // 市场价 "stock": "996", // 库存量 "key": "5221", "sku": "275362", // sku number "goodsOtherAttr": { // 商品其它信息 "init_sales": "", // 初始销量 "buy_limit_num": "", // 限购数量 "min_buy_num": "", // 最小购买数 "time_shelves": "", "time_sold_out": "", // 是否售完 "time_recommend_start": "", "time_recommend_end": "" }, "str_arrt": "100pcs", // 所选商品属性 "goods_id": "38128", "old_price": "28.95", "img_path": "https:\/\/cdn.img.shimmerqueen.com\/Uploads\/goods\/202008\/4e4f0ec914619e57f1c89a142c05e947.jpg", // 产品图 "fee_icon": "", // 包邮标识 "active_gifts": [] // 礼品列表 } }], "active_gifts": [], // 全场礼品列表 "total_price": 28.95, // 总金额 "discounted_price": 0, // 折扣金额 "total_num": 1, // 购物车总数量 "active_gifts_cart": [] // } } ```