全部分类-商品列表
<p><strong>简要描述:</strong> </p>
<ul>
<li>全部分类-商品列表</li>
</ul>
<p><strong>请求URL:</strong> </p>
<ul>
<li><code>http://xx.com/score/score-parts/exchange-parts</code></li>
</ul>
<p><strong>请求方式:</strong></p>
<ul>
<li>POST </li>
</ul>
<p><strong>参数:{"category_id":"1","order_type":"1"}</strong> </p>
<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;">category_id</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">int</td>
<td>分类ID</td>
</tr>
<tr>
<td style="text-align: left;">order_type</td>
<td style="text-align: left;">否</td>
<td style="text-align: left;">int</td>
<td>排序:1默认、2积分从低到高、3积分从高到低</td>
</tr>
</tbody>
</table>
<p><strong>返回示例</strong></p>
<pre><code>{
&quot;errCode&quot;: 1000,
&quot;errMsg&quot;: &quot;请求成功&quot;,
&quot;data&quot;: {
&quot;count&quot;: &quot;4&quot;,
&quot;list&quot;: [
{
&quot;id&quot;: &quot;2&quot;,//商品ID
&quot;name&quot;: &quot;测试商品&quot;,//商品名称
&quot;main_pic&quot;: &quot;&quot;,//图片
&quot;integral&quot;: 20//积分
},
{
&quot;id&quot;: &quot;3&quot;,
&quot;name&quot;: &quot;测试商品&quot;,
&quot;main_pic&quot;: &quot;&quot;,
&quot;integral&quot;: 10
},
{
&quot;id&quot;: &quot;2&quot;,
&quot;name&quot;: &quot;测试商品&quot;,
&quot;main_pic&quot;: &quot;&quot;,
&quot;integral&quot;: 20
}
]
}
}</code></pre>