兑换清单(购物车)
<p><strong>简要描述:</strong> </p>
<ul>
<li>兑换清单(购物车)</li>
</ul>
<p><strong>请求URL:</strong> </p>
<ul>
<li><code>http://xx.com/score/score-parts/shopping-list</code></li>
</ul>
<p><strong>请求方式:</strong></p>
<ul>
<li>POST </li>
</ul>
<p><strong>参数:{}</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>
</tbody>
</table>
<p><strong>返回示例</strong></p>
<pre><code>{
&quot;errCode&quot;: 1000,
&quot;errMsg&quot;: &quot;请求成功&quot;,
&quot;data&quot;: {
&quot;count&quot;: &quot;2&quot;,//总条数
&quot;org_integral&quot;: &quot;2&quot;,//合计积分
&quot;org_integral_balance&quot;: &quot;2&quot;,//可用积分
&quot;list&quot;: [
{
&quot;id&quot;: &quot;3&quot;,//兑换清单ID
&quot;parts_id&quot;: &quot;1&quot;,//商品ID
&quot;customer_id&quot;: &quot;63298&quot;,//修理厂ID
&quot;count&quot;: &quot;4&quot;,//商品数量
&quot;name&quot;: &quot;小鹏3&quot;,//商品名称
&quot;main_pic&quot;: &quot;&quot;,//商品图片
&quot;integral&quot;: &quot;10&quot;,//商品积分
&quot;exchange_restrictions&quot;: &quot;2&quot;,//X件起兑
&quot;parts_count&quot;: 0,//商品库存
&quot;error&quot;: &quot;库存不足&quot;//库存不足提示
},
{
&quot;id&quot;: &quot;2&quot;,
&quot;parts_id&quot;: &quot;2&quot;,
&quot;customer_id&quot;: &quot;63298&quot;,
&quot;count&quot;: 2,
&quot;name&quot;: &quot;测试商品&quot;,
&quot;main_pic&quot;: &quot;&quot;,
&quot;integral&quot;: 20,
&quot;exchange_restrictions&quot;: &quot;1&quot;,
&quot;parts_count&quot;: 15,
&quot;error&quot;: &quot;&quot;
}
]
}
}</code></pre>