列表
``` 请求地址
/api/action
```
- 请求参数
| 字段 | 类型/默认值 | 说明 |
| ------- | ----------- | -------------------- |
| _handle | MyTradePage | |
| _method | GetCollects | |
| page | 页数 | 1 |
| size | 条数 | 20 |
| token | | |
| time | | 10位时间戳 |
| sign | | md5 `{token}#{time}` |
- 请求响应
``` json
{
"code":1,
"msg":null,
"data":{
"total":100,
"datas":[{
"collect":100,//id
"title":"xxx",//标题
"gname":"xxx",//游戏名称
"gimg":"xxx",//游戏图片
"sname":"xxx",//游戏服名称
"pay":"xxx",//充值总数
"price":"xxx",//价格
"gtype":"xxx",//游戏类型
"trade":"xxx",//订单号
"tradetype":"寄售",//交易类型
}]
}
}
```