💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
#### 列表 ~~~[api] get:/dealer/distributor/index/index number:storesId=0#门店ID number:p=1#当前页数 numbner:ps=20#分页大小 <<< success { "code": 1, "msg": "", "time": "2018-07-11 08:42:10", "data": [ { "stores_id": 1, "distributor_id": 1, "created_at": "2018-07-10 19:22:26", "stores": { "id": 1, "name": "门店1", "thumb": "http://oss.dgyouduo.com/static/img/no-image.png", "is_audit": 1, "status": 1, "is_audit_text": "审核通过", "status_text": "正常" }, "distributor": { "id": 1, "username": "配送员1", "mobile": "13512345678", "realname": "", "longitude": "", "latitude": "", "type": 2, "work": 0, "status": 1, "created_at": "2018-07-08 18:32:39", "updated_at": "2018-07-10 19:22:26", "status_text": "正常", "work_text": "休息" } } ], "_meta": { "totalCount": 1, "pageCount": 1, "currentPage": 1, "perPage": 20 } } ~~~ #### 详情 ~~~[api] get:/dealer/distributor/index/retrieve/id/:id <<< success { "code": 1, "msg": "", "time": "2018-07-11 08:52:02", "data": { "id": 1, "username": "配送员1", "mobile": "13512345678", "realname": "", "longitude": "", "latitude": "", "type": 2, "work": 0, "status": 1, "created_at": "2018-07-08 18:32:39", "updated_at": "2018-07-10 19:22:26", "status_text": "正常", "work_text": "休息" } } ~~~ #### 绑定 > 配送员需先注册后再输入手机号码添加到门店 ~~~[api] post:/dealer/distributor/index/bind *number:stores_id#门店ID *string:mobile#手机号码 <<< success { "code": 1, "msg": "success", "time": "2018-07-10 01:30:22", "data": [] } ~~~ #### 解绑 ~~~[api] post:/dealer/distributor/index/unbind *number:stores_id#门店ID *string:mobile#手机号码 <<< success { "code": 1, "msg": "success", "time": "2018-07-10 08:25:15", "data": [] } ~~~