研发中心数据
## 1、获取全球研发中心数据
| 属性 | 值 |
| ----------- | ---- |
| 请求方式 | POST|
| 测试URL | http://admin.thomas.yuandongdong.com/api/centers|
| 发布URL | |
##### 请求参数
| 字段 | 必填 | 类型 | 示例值 | 描述 |
| ---- | ---- | ---- | ------ | --------- |
##### 返回参数说明
| 字段 | 描述 |
| ---- | --------- |
|title|研发中心名称|
|subtitle|研发中心介绍|
|thumb|图片|
##### 返回值
code 200,请求成功 数据正常
``` javascript
{
"code": 200,
"msg": "",
"data": [
{
"id": 3,
"title": "白宫中心",
"subtitle": "这白宫真漂亮",
"thumb": "https://h5.oss.cellthomasintl.com/img/20220318_R2pLsB6dIvT3Adn.jpg",
"sort": 5
},
{
"id": 1,
"title": "密尔沃基中心",
"subtitle": "这中心真大啊",
"thumb": "https://h5.oss.cellthomasintl.com/img/20220318_DOAonjRz6ET5ZpN.jpg",
"sort": 1
},
{
"id": 4,
"title": "迈阿密中心",
"subtitle": "这中心行啊 真挺漂亮拉菲",
"thumb": "https://h5.oss.cellthomasintl.com/img/20220318_y8LUREtb0u4Z9yS.jpg",
"sort": 0
}
]
}
```