项目报表
<h3><strong>简要描述:</strong></h3>
<h1>- 项目报表table的表头</h1>
<p><strong>请求URL:</strong></p>
<ul>
<li><code>http://../admin/report/projectHeaders</code></li>
</ul>
<p><strong>请求方式:</strong></p>
<ul>
<li>POST</li>
</ul>
<p><strong>返回示例</strong></p>
<pre><code> {
&quot;msg&quot;: &quot;success&quot;,
&quot;code&quot;: 0,
&quot;data&quot;: [&quot;日期&quot;, &quot;呼叫总数&quot;, &quot;呼入数&quot;, &quot;呼出数&quot;, &quot;应答数&quot;, &quot;应答率&quot;, &quot;呼损数&quot;, &quot;呼损率&quot;, &quot;成功数&quot;, &quot;成功率&quot;, &quot;消费金额(元)&quot;, &quot;转接数&quot;, &quot;转接率&quot;]
}</code></pre>
<h3><strong>简要描述:</strong></h3>
<h1>- 项目报表的数据</h1>
<p><strong>请求URL:</strong></p>
<ul>
<li><code>http://../admin/report/project</code></li>
</ul>
<p><strong>请求方式:</strong></p>
<ul>
<li>POST</li>
</ul>
<p><strong>参数:</strong></p>
<table>
<thead>
<tr>
<th>参数名</th>
<th>必选</th>
<th>类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td>project_id</td>
<td>是</td>
<td>int</td>
<td>项目编号,初始值:0</td>
</tr>
<tr>
<td>startd</td>
<td>是</td>
<td>date</td>
<td>日期:年月日 例如:2019-01-01</td>
</tr>
<tr>
<td>endd</td>
<td>是</td>
<td>date</td>
<td>日期:年月日 例如:2019-01-01</td>
</tr>
</tbody>
</table>
<p><strong>返回示例</strong></p>
<pre><code> {
&quot;msg&quot;: &quot;success&quot;,
&quot;code&quot;: 0,
&quot;data&quot;: [{
&quot;呼入数&quot;: &quot;0&quot;,
&quot;应答数&quot;: &quot;533&quot;,
&quot;成功率&quot;: &quot;0.00&quot;,
&quot;呼损数&quot;: &quot;521&quot;,
&quot;消费金额(元)&quot;: &quot;42.6400&quot;,
&quot;转接率&quot;: &quot;100.00&quot;,
&quot;呼叫总数&quot;: &quot;1772&quot;,
&quot;呼损率&quot;: &quot;29.40&quot;,
&quot;转接数&quot;: &quot;533&quot;,
&quot;呼出数&quot;: &quot;1772&quot;,
&quot;应答率&quot;: &quot;30.08&quot;,
&quot;日期&quot;: &quot;2021-08-30&quot;,
&quot;成功数&quot;: &quot;0&quot;
}]
}</code></pre>
<h3><strong>简要描述:</strong></h3>
<h1>- 项目下拉框</h1>
<p><strong>请求URL:</strong></p>
<ul>
<li><code>http://../admin/project/list</code></li>
</ul>
<p><strong>请求方式:</strong></p>
<ul>
<li>POST</li>
</ul>
<p><strong>返回示例</strong></p>
<pre><code> {
&quot;msg&quot;: &quot;success&quot;,
&quot;code&quot;: 0,
&quot;data&quot;: [{
&quot;id&quot;: 1,
&quot;name&quot;: &quot;test&quot;
}]
}</code></pre>
<p><strong>备注</strong></p>
<ul>
<li>更多返回错误代码请看首页的错误代码描述</li>
</ul>