cms获取搜索类目
<p>说明:cms获取搜索类目</p>
<p>接口路径 :<strong>/fy/searchCat/getSearchCats</strong></p>
<p><strong>Content-Type</strong>: application/x-www-form-urlencoded </p>
<p> </p>
<p>请求参数:</p>
<table>
<thead>
<tr>
<th>参数</th>
<th>参数类型</th>
<th>说明</th>
<th>备注</th>
<th>必填</th>
</tr>
</thead>
<tbody>
<tr>
<td><strong>pCatId</strong></td>
<td>String</td>
<td><em>父类目ID</em></td>
<td>传“0”或者不传,查询一级类目。如果要查询子类目,可以将类目的searchCatId 通过这个参数传输,即可查出此类目下的所有下一级子类目</td>
<td>选填</td>
</tr>
</tbody>
</table>
<p> </p>
<p>示例:
{ "pCatId":"0" }
</p>
<p>响应返回:</p>
<table>
<thead>
<tr>
<th>参数</th>
<th></th>
<th>参数类型</th>
<th>备注</th>
</tr>
</thead>
<tbody>
<tr>
<td>result</td>
<td></td>
<td>String</td>
<td>成功为success</td>
</tr>
<tr>
<td>resultData</td>
<td></td>
<td>String</td>
<td>json数据格式,响应数据。</td>
</tr>
<tr>
<td>resultMsg</td>
<td></td>
<td>String</td>
<td>提示,列如,成功或失败等</td>
</tr>
<tr>
<td>resultCode</td>
<td></td>
<td>String</td>
<td>0成功,其它失败</td>
</tr>
</tbody>
</table>
<p>searchCats 请求参数:</p>
<table>
<thead>
<tr>
<th>参数</th>
<th>参数类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td><strong>searchCatId</strong></td>
<td>String</td>
<td><em>类目主键ID</em></td>
</tr>
<tr>
<td><strong>pCatId</strong></td>
<td>String</td>
<td><em>父类目ID</em></td>
</tr>
<tr>
<td><strong>catName</strong></td>
<td>String</td>
<td><em>类目名称</em></td>
</tr>
<tr>
<td><strong>searchWord</strong></td>
<td>String</td>
<td><em>搜索关键词</em></td>
</tr>
<tr>
<td><strong>sort</strong></td>
<td>number</td>
<td><em>排序值,排序值倒序</em></td>
</tr>
<tr>
<td><strong>online</strong></td>
<td>number</td>
<td><em>上架状态 1:上架,2:下架</em></td>
</tr>
<tr>
<td><strong>imgUrl</strong></td>
<td>string</td>
<td><em>类目图片地址</em></td>
</tr>
<tr>
<td><strong>searchRegularId</strong></td>
<td>number</td>
<td><em>搜索规则Id,点击“详细”时需要用到</em></td>
</tr>
</tbody>
</table>
<p>示例
{"result":"success","resultData":{"searchCats":[{"special":1,"searchCatId":"100031266181552","catName":"美妆","online":1,"searchWord":"美妆","searchRegularId":21,"sort":3,"pCatId":"0"},{"special":1,"searchCatId":"100024940181551","catName":"男装","online":1,"searchWord":"男装衬衫","searchRegularId":20,"sort":2,"pCatId":"0"},{"special":1,"searchCatId":"100011164181539","catName":"女装","online":1,"searchWord":"女装连衣裙","searchRegularId":19,"sort":1,"pCatId":"0"}]},"resultCode":0,"resultMsg":"成功"}</p>