sku列表
# 商品sku列表 1.2
- **请求URL**
> [{{URL}}/admin/sku_goods](#)
- **请求方式**
>**get**
- **Headers**
>>Authorization --用户token
- **请求参数**
| 请求参数 | 参数类型 | 参数说明 |
| :-------- | :--------| :------ |
| classify_name|array| 分类id 数组形式|
| factory_id|string| 商家id|
| search_name|string| 商品名称 商品型号|
| page_size|int| 显示条数|
- **错误码**
```java
400 失败
```
- **返回示例**
>
```java
{
"status": "success",
"code": 200,
"data": {
"total": 3,
"per_page": 15,
"current_page": 1,
"last_page": 1,
"data": [
{
"id": 1, --skuid
"factory_id": 1, --商家id
"costprice": "100.00", --成本价
"price": "90.00", --零售价
"s_name": "3右", --sku名字
"goods_model": "AS3096A",--型号
"component": "1", --子型号
"components": "AS3096A-1", --子型号拼接好的
"is_shelf": 2, --上下架 1:上架 2:下架
"is_use": 2, --是否禁用 1:不禁用 2:禁用
"size": "172*87", --尺寸
"image_url": "www.sss.cm",--照片url
"color": "米色", --颜色
"amount": 100 --库存
},
{
"id": 2,
"factory_id": 1,
"costprice": "100.00",
"price": "90.00",
"s_name": "3做",
"goods_model": "AS3096A",
"component": "2",
"components": "AS3096A-1", --子型号拼接好的
"is_shelf": 2,
"is_use": 2,
"size": "172*87",
"image_url": "www.sss.cm",
"color": "米色",
"amount": 100
},
{
"id": 3,
"factory_id": 1,
"costprice": "100.00",
"price": "90.00",
"s_name": "2右",
"goods_model": "AS3096A",
"component": "AS3096A-3",
"components": "AS3096A-1", --子型号拼接好的
"is_shelf": 2,
"is_use": 2,
"size": "172*87",
"image_url": "www.sss.cm",
"color": "米色",
"amount": 100
}
]
}
```