文档
测试

18、spu检索

GET
/product/spuinfo/list

请求参数

```json { page: 1,//当前页码 limit: 10,//每页记录数 sidx: 'id',//排序字段 order: 'asc/desc',//排序方式 key: '华为',//检索关键字 catelogId: 6,//三级分类id brandId: 1,//品牌id status: 0,//商品状态 } ``` > 分页数据

响应数据

```json { "msg": "success", "code": 0, "page": { "totalCount": 0, "pageSize": 10, "totalPage": 0, "currPage": 1, "list": [{ "brandId": 0, //品牌id "brandName": "品牌名字", "catalogId": 0, //分类id "catalogName": "分类名字", "createTime": "2019-11-13T16:07:32.877Z", //创建时间 "id": 0, //商品id "publishStatus": 0, //发布状态 "spuDescription": "string", //商品描述 "spuName": "string", //商品名字 "updateTime": "2019-11-13T16:07:32.877Z", //更新时间 "weight": 0 //重量 }] } } ```