## 接口说明
以下是一个接口返回示例
```json
{
"status": "success",
"msg": "获取成功",
"result": [
{
"id": 1,
"cls_type": "名称123",
"cls_name": "名称",
"cls_img": "\/uploads\/classify\/20180326\/9169c18a0ed78b8ca126750cc23cd1ec.png",
"cls_color": "#b6b6b6"
},
{
"id": 2,
"cls_type": "dsadsa",
"cls_name": "ffff",
"cls_img": "\/uploads\/classify\/20180326\/98b7b5455bba8759c218e850cd093280.png",
"cls_color": "#bdbdbd"
}
],
"page": {
"count": 2,
"current": 1,
"limit": 20,
"total": 1
}
}
```
#### 字段列表
| 字段名 | 说明 |
| --- | --- |
| status | 接口状态 |
| msg | 接口状态信息 |
| result | 数据集 |
| page | 列表分页信息 |
| page.count | 总条数 |
| page.current | 当前页码 |
| page.limit | 每页显示数量 |
| page.total | 总页数 |
#### 接口状态
| 值 | 说明 |
| --- | --- |
| success | 成功 |
| error | 错误 |
| fail | 失败 |