列表

#### 请求URL: -/trade/cart/items #### 请求方式: - POST #### 请求头: |参数名|是否必须|类型|默认值|说明| |:------- |:---|:----- |:---|----- | |Content-Type |是 |string|| application/json| #### 请求body示例: ``` { } ``` #### 返回示例: ``` { "code": 200, "result": { "content": [ { "id": 2,//店铺id "logo": "",//LOGo "name": "易贝自营店", //店铺名称 "goodsList": [ { "checked": true, //是否选中 "goodsId": 1,//商品id "id": 5,//id "name": "商品11", //商品名称 "productSrc": "/images/20211113/e73cc13d3fb643b9a36d17e4098e4340.jpeg", //缩略图 "quantity": 1, //数量 "specValue": "asd" //规格值 "salesPrice": 10,//价格 } ] } ], "total": 1 }, "message": "" } ```