寄售列表

``` 请求地址 /api/action ``` - 请求参数 | 字段 | 类型/默认值 | 说明 | | ------- | ----------- | ------------------------------------- | | _handle | SellPage | | | _method | GetSells | | | time | | 10位时间戳 | | gid | int | 游戏id ,全部游戏为空 | | gtype | string | 游戏类型 页游/H5/手游 | | sort | string | 排序方式: 最新发布/价格最低/价格最高 | | page | int | 页码 | | size | int | 每页大小 | - 请求响应 ``` json { "code":1, "msg":null, "data":{ "total":"总数", "datas":[ { "title":"标题", "gname":"游戏名称", "gimg":"游戏图片", "sname":"游戏服名称", "pay":"总充值", "price":"价格", "gtype":"游戏类型", "trade":"主键,订单号" } ] } } ```