文档
测试

获取金币/U币充值选项

GET
http://ud.12861.ltd/api.php/wallet/recharge_total_list

请求头

参数名
类型
描述
必填
token
string
示例:d89ff0d98d38be23e77710fc0f2ea9d3d40150ecba79c14a6f0f822ecb3d2991
必填

响应参数

参数名
类型
描述
必填
code
int
示例:1
必填
msg
string
示例:success
必填
data
object
数据字典
必填
balance_list
array
金币列表
必填
total
string
示例:0.01
必填
need_cny
int
示例:0
必填
coin_list
array
U币列表
必填
total
string
示例:60
必填
need_cny
int
示例:6
必填

说明 / 示例

``` { "code": 1, "msg": "success", "data": { "balance_list": [ //金币列表 { "total": 0.01, //充值金额 "need_cny": 0.01 //所需人民币金额 }, { "total": 30, "need_cny": 30 }, { "total": 50, "need_cny": 50 }, { "total": 100, "need_cny": 100 }, { "total": 200, "need_cny": 200 }, { "total": 500, "need_cny": 500 }, { "total": 800, "need_cny": 800 } ], "coin_list": [ //U币充值 { "total": 60, //充值U币金额 "need_cny": 6 //所需人民币金额 }, { "total": 300, "need_cny": 30 }, { "total": 980, "need_cny": 98 }, { "total": 1200, "need_cny": 120 }, { "total": 3000, "need_cny": 300 }, { "total": 5000, "need_cny": 500 } ] } }