文档
测试

预约列表

POST
appointment_list

请求参数

参数名
类型
描述
必填
token
str
用户登录状态token
必填
page
int
页码
必填
type
str
卖量/买量
必填
exc
int
0或1
可选

响应参数

参数名
类型
描述
必填
code
int
错误码,0正确,大于0表示有错误
必填
msg
str
错误信息,ok 或 错误信息
必填
data
obj
返回的数据
必填

说明 / 示例

## 返回示例 ```json { "code": 0, "msg": "success", "data": { "list": [ { "qid": 20, "status": 0, "uid": 1, "type": "买量", "game_type": [ "酷跑", "模拟经营", "对战类" ], "type1": "轻度", "price": 1, "date": "2020年03月05日", "quest_fields": { "fields": { "price": 1, "isgameName": "点点个人流量主", "Guide": 1, "GuideTwo": 2, "age": 18, "ageTwo": 48, "ratio": 90, "ratioTwo": 10 }, "imgList": "https://api.llpt.cygame.cn//uploads/202003/15833166982123.jpg", "isDangQi": 2, "isups": [ "新增", "创角" ], "isHoutai": [ "阿拉丁", "微信后台" ], "isDangQiTwo": 2 }, "aid": 6, "last_uid": 1, "last_date": null, "appointment_fields": { "fields": { "Guide": 10, "GuideTwo": 100, "price": 0.3, "gameName": "抹茶拿铁", "age": 18, "ageTwo": 45, "ratio": 50, "ratioTwo": 50 }, "isup": [ "新增", "创角" ], "isHoutai": [ "阿拉丁", "微信后台" ], "isDangQi": 2, "isDangQiTwo": 2, "isgameType": [ "合成类", "超休闲" ], "istypein": "轻度" }, "appointmnet_date": "2020年03月05日 14:32:09", "confirm_count": 0, "update": false }, { "qid": 2, "status": 0, "uid": 1, "type": "买量", "game_type": [ "合成类", "车类", "超休闲" ], "type1": "轻度", "price": 38, "date": "2020年02月28日", "quest_fields": { "fields": { "isgameName": "我要喝星巴克", "Guide": 1, "age": 18, "ageTwo": 45, "ratio": 60, "ratioTwo": 40, "arrange": "2020-02-28", "price": 38 }, "imgList": "https://api.llpt.cygame.cn//uploads/202002/15828636359475.jpg", "isups": "新增", "isHoutai": "微信后台" }, "aid": 1, "last_uid": 1, "last_date": null, "appointment_fields": { "fields": { "gameName": "星巴克", "amount": 1, "bid": 38, "auction": "2020-02-28", "threshold": 1 }, "isups": "新增", "houtai": "微信后台", "img": "https://api.llpt.cygame.cn//uploads/202002/15828761678248.jpg" }, "appointmnet_date": "2020年02月28日 15:49:29", "confirm_count": 0, "update": false } ], "total": 3, "total_buy": 3, //买量总数 "total_sell": 4 //卖量总数 } } ```