简要描述:
-[我的]页面
请求域名:
- http://xx.com
请求URL:
plugin.task-package.frontend.index.member-data
请求参数说明:
参数名 | 类型 | 是否必需 | 说明 |
---|
返回示例:
正确时返回:
{
result: 1,
msg: "ok",
data: {
"member_data":{
"member_id":1,
"nickname":"测试",
"avatar":"https://ps.com/a.jpg",
"level_name":"测试等级",
},
"sub_team_show":true,
"contribution_show": true,
"active_show": false,
"sub_team_count":200,
"active_value":200,
"contribution_value":200,
"proceduresFeeTotal":400,
"platformFlowTotal":300,
}
}
错误时返回:(#如返回result=0,并且data中带task_package_invite_code=1,跳转到填写邀请码页面;data中带task_package_real_name_auth=1,跳转到填写实名认证页面)
{
"result": 0,
"msg": "请先填写邀请码",
"data": {
"task_package_invite_code":1
}
}
{
"result": 0,
"msg": "请先实名认证",
"data": {
"task_package_real_name_auth":1
}
}
{
"result": 0,
"msg": "请登录",
"data": []
}
返回参数说明:
参数名 | 类型 | 说明 |
---|---|---|
member_data | array | 会员基本信息 |
sub_team_show | bool | 前端查看下级团队是否显示,true显示 |
sub_team_count | int | 下级团队人数 |
active_value | int | 活跃度 |
active_show | bool | 是否显示活跃度 |
contribution_show | bool | 是否显示贡献值 |
contribution_value | int | 下贡献值 |
proceduresFeeTotal | float | 手续费分红累计 |
platformFlowTotal | float | 平台流水分红累计 |
member_data返回参数说明:
参数名 | 类型 | 说明 |
---|---|---|
member_id | int | 会员ID |
nickname | string | 会员昵称 |
avatar | string | 头像 |
level_name | string | 等级名称 |