团队
# 我的信息
## 说明
```
```
### 请求参数
| 参数 | 说明 | 类型 | 备注 | 是否必填 |
| ------- | -------- | ------ | ------------------- | -------- |
| _handle | 处理类 | string | 固定值:MerchantPage| 是 |
| _method | 处理方法 | string | 固定值:GetOneSelf| 是 |
| token| token | string | 登陆注册拿到的令牌| 是 |
#### 请求地址
```
域名/api/action/
```
##### 返回值
```json
{
"code": 1,
"msg": "",
"data":
{
"xy_merchant_id": 0,// 代理id
"xy_merchant_name": null,// 代理名称
"xy_merchant_account": null,// 代理账号
"xy_parent_id": 0,// 上级代理id
"xy_parent_account": null,// 上级代理账号
"xy_password": null,
"xy_phone": null,// 手机号
"xy_wechat": null,// 微信
"xy_total_get": 0.0,
"xy_total_send": 0.0,
"xy_total_balance": 0.0,//、 我的平台币
"xy_last_logintime": "0001-01-01 00:00:00",// 最后登陆时间
"xy_last_optiontime": "0001-01-01 00:00:00",// 最后操作时间
"xy_regtime": "0001-01-01 00:00:00",// 注册时间
"xy_state": 0,
"xy_lock_starttime": "0001-01-01 00:00:00",
"xy_lock_endtime": "0001-01-01 00:00:00",
"xy_lock_content": null,
"Id": null
}
}
```
# 我的团队
## 说明
```
```
### 请求参数
| 参数 | 说明 | 类型 | 备注 | 是否必填 |
| ------- | -------- | ------ | ------------------- | -------- |
| _handle | 处理类 | string | 固定值:MerchantPage| 是 |
| _method | 处理方法 | string | 固定值:GetTheLowerTheAgent| 是 |
| token| token | string | 登陆注册拿到的令牌| 是 |
| xy_merchant_name| 下级代理名称| string | | 否 |
#### 请求地址
```
域名/api/action/
```
##### 返回值
```json
{
"code": 1,
"msg": "",
"data": [
{
"xy_merchant_id": 0,// 下级代理id
"xy_merchant_name": null,// 下级代理名称
"xy_merchant_account": null,// 下级代理账号
"xy_parent_id": 0,// 上级代理id
"xy_parent_account": null,// 上级代理账号
"xy_password": null,
"xy_phone": null,
"xy_wechat": null,
"xy_total_get": 0.0,// 已拿货数量
"xy_total_send": 0.0,// 已发货数量
"xy_total_balance": 0.0,// 余额
"xy_last_logintime": "0001-01-01 00:00:00",
"xy_last_optiontime": "0001-01-01 00:00:00",
"xy_regtime": "0001-01-01 00:00:00",
"xy_state": 0,
"xy_lock_starttime": "0001-01-01 00:00:00",
"xy_lock_endtime": "0001-01-01 00:00:00",
"xy_lock_content": null,
"Id": null
}
]
}
```
# 移除团队
## 说明
```
```
### 请求参数
| 参数 | 说明 | 类型 | 备注 | 是否必填 |
| ------- | -------- | ------ | ------------------- | -------- |
| _handle | 处理类 | string | 固定值:MerchantPage| 是 |
| _method | 处理方法 | string | 固定值:RemoveMember| 是 |
| token| token | string | 登陆注册拿到的令牌| 是 |
| xy_merchant_id| 下级代理id | int|| 是 |
#### 请求地址
```
域名/api/action/
```
##### 返回值
```json
{
"code": 1,
"msg": "",
"data": null
}
```