发布 进入的瀑布流筛选条件
<p>[TOC]</p>
<h5>简要描述</h5>
<ul>
<li>用户注册接口 更新于 2022-11-04 14:00:58 星期五</li>
</ul>
<h5>请求URL</h5>
<ul>
<li><code>https://www.linsheapp.com/index/waterfallFilteringData</code></li>
</ul>
<h5>请求方式</h5>
<ul>
<li>POST </li>
</ul>
<h5>参数</h5>
<table>
<thead>
<tr>
<th style="text-align: left;">参数名</th>
<th style="text-align: left;">必选</th>
<th style="text-align: left;">类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: left;">token</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">string</td>
<td>用户token</td>
</tr>
<tr>
<td style="text-align: left;">two_service_id</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">string</td>
<td>二级标签id</td>
</tr>
<tr>
<td style="text-align: left;">games_id</td>
<td style="text-align: left;">否</td>
<td style="text-align: left;">string</td>
<td>游戏id 普通订单可不传 热门为零</td>
</tr>
</tbody>
</table>
<h5>返回示例</h5>
<pre><code>{
"code": 200,
"data": [
{
"name": "性别",#标题
"type": "sex",#类型
"son": [#选项
{
"name": "不限",#显示
"type": "sex",#类型
"id": -11#值
},
{
"name": "男士",
"type": "sex",
"id": "1"
},
{
"name": "女士",
"type": "sex",
"id": "2"
}
]
},
{
"name": "年龄",
"type": "age",
"son": [
{
"name": "不限",
"type": "age",
"id": -11
},
{
"name": "18-22岁",
"type": "age",
"id": "18,22"
},
{
"name": "23-26岁",
"type": "age",
"id": "23,26"
},
{
"name": "27-35岁",
"type": "age",
"id": "27,35"
},
{
"name": "35岁以上",
"type": "age",
"id": "36,37"
}
]
},
{
"name": "身高",
"type": "height",
"son": [
{
"name": "不限",
"type": "height",
"id": -11
},
{
"name": "150-155",
"type": "height",
"id": "150,155"
},
{
"name": "156-160",
"type": "height",
"id": "156,160"
},
{
"name": "161-165",
"type": "height",
"id": "161,165"
},
{
"name": "166-170",
"type": "height",
"id": "166,170"
},
{
"name": "171-175",
"type": "height",
"id": "171,175"
},
{
"name": "176-180",
"type": "height",
"id": "176,180"
},
{
"name": "180厘米以上",
"type": "height",
"id": "181,182"
}
]
},
{
"name": "体重",
"type": "weight",
"son": [
{
"name": "不限",
"type": "weight",
"id": -11
},
{
"name": "70-80",
"type": "weight",
"id": "70,80"
},
{
"name": "81-90",
"type": "weight",
"id": "81,90"
},
{
"name": "91-100",
"type": "weight",
"id": "91,100"
},
{
"name": "101-120",
"type": "weight",
"id": "101,120"
},
{
"name": "121-140",
"type": "weight",
"id": "121,140"
},
{
"name": "141-160",
"type": "weight",
"id": "141,160"
},
{
"name": "160斤以上",
"type": "weight",
"id": "161,162"
}
]
}
]
}</code></pre>
<h5>返回参数说明</h5>
<table>
<thead>
<tr>
<th style="text-align: left;">参数名</th>
<th style="text-align: left;">类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: left;">groupid</td>
<td style="text-align: left;">int</td>
<td>用户组id,1:超级管理员;2:普通用户</td>
</tr>
</tbody>
</table>
<h5>备注</h5>
<ul>
<li>更多返回错误代码请看首页的错误代码描述</li>
</ul>