订单中心显示的表头列表
<p>[TOC]</p>
<h5>简要描述</h5>
<ul>
<li>用户注册接口 更新于2022-01-23 18:51:35 星期日</li>
</ul>
<h5>请求URL</h5>
<ul>
<li><code>https://www.linsheapp.com/index/selectOrderCenterList</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>
</tbody>
</table>
<h5>返回示例</h5>
<pre><code> {
"code": 200,
"data": [
{
"order_type": 0,
"name": "全部订单",
"son": [
{
"status": 0,
"name": "全部订单"
},
{
"status": 1,
"name": "进行中"
},
{
"status": 2,
"name": "待评星"
},
{
"status": 3,
"name": "取消/退款"
}
]
},
{
"order_type": 1,
"name": "支付订单",
"son": [
{
"status": 0,
"name": "全部订单"
},
{
"status": 2,
"name": "待评星"
}
]
},
{
"order_type": 2,
"name": "我的发单",
"son": [
{
"status": 0,
"name": "全部订单"
},
{
"status": 1,
"name": "进行中"
},
{
"status": 2,
"name": "待评星"
},
{
"status": 3,
"name": "取消/退款"
}
]
},
{
"order_type": 3,
"name": "我的接单",
"son": [
{
"status": 0,
"name": "全部订单"
},
{
"status": 1,
"name": "进行中"
},
{
"status": 2,
"name": "待评星"
},
{
"status": 3,
"name": "取消/退款"
}
]
}
]
}</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;">code</td>
<td style="text-align: left;">int</td>
<td>200 正常</td>
</tr>
<tr>
<td style="text-align: left;">data</td>
<td style="text-align: left;">array</td>
<td>数据信息</td>
</tr>
</tbody>
</table>
<h5>备注</h5>
<ul>
<li>order_type:订单类型</li>
<li>name:显示名称</li>
<li>status:订单状态</li>
<li>son:子集</li>
</ul>