商家中心页面接口 websocket测试 POST index/spersonal/index 接口描述 门店状态由status、current_status共同确定,审核成功后显示门店营业状态 响应参数 参数名 类型 描述 必填 nickname string 首次登录时为空 前端先默认一个 必填 tel 注册电话 必填 headimgurl 头像 初始值为空 必填 shop array 用户的门店 必填 id 门店id 必填 shop_name 门店名称 必填 status 0/待完善/1/待审核/2/审核成功/3/审核失败 必填 current_status 当前状态 1/营业中/2/停业中 必填 说明 / 示例 ```json { "nickname": "111", "tel": "13540833837", "headimgurl": "", "shop": [ { "id": 1, "shop_name": "xx", "status": 0, "current_status": 1 }, { "id": 2, "shop_name": "让他", "status": 0, "current_status": 1 }, { "id": 3, "shop_name": "测试", "status": 0, "current_status": 1 }, { "id": 4, "shop_name": "哈哈", "status": 0, "current_status": 1 } ] } ```
```json { "nickname": "111", "tel": "13540833837", "headimgurl": "", "shop": [ { "id": 1, "shop_name": "xx", "status": 0, "current_status": 1 }, { "id": 2, "shop_name": "让他", "status": 0, "current_status": 1 }, { "id": 3, "shop_name": "测试", "status": 0, "current_status": 1 }, { "id": 4, "shop_name": "哈哈", "status": 0, "current_status": 1 } ] } ```