获取广告列表
<h5>简要描述</h5>
<ul>
<li>获取广告列表</li>
</ul>
<h5>请求URL</h5>
<ul>
<li><code>http://api.9lele.com/public/index.php/api/ad/list</code></li>
</ul>
<h5>请求方式</h5>
<ul>
<li>get</li>
</ul>
<h5>Header</h5>
<table>
<thead>
<tr>
<th>header</th>
<th>示例值</th>
<th>必选</th>
<th>类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td>Token</td>
<td>be4c4de6-6ed4-4d79-9678-f75ac6c6c6af</td>
<td>是</td>
<td>string</td>
<td>登录成功后获取的token</td>
</tr>
</tbody>
</table>
<h5>请求Query参数</h5>
<table>
<thead>
<tr>
<th>参数名</th>
<th>示例值</th>
<th>必选</th>
<th>类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td>pageIndex</td>
<td>1</td>
<td>是</td>
<td>string</td>
<td>页码</td>
</tr>
<tr>
<td>pageSize</td>
<td>5</td>
<td>是</td>
<td>string</td>
<td>每页条数(默认为每页10条)</td>
</tr>
</tbody>
</table>
<h5>成功返回示例</h5>
<pre><code>{
&quot;code&quot;: 1,
&quot;msg&quot;: &quot;返回成功&quot;,
&quot;time&quot;: &quot;1714176702&quot;,
&quot;data&quot;: {
&quot;pageIndex&quot;: &quot;1&quot;,
&quot;pageSize&quot;: &quot;5&quot;,
&quot;count&quot;: 4,
&quot;list&quot;: [
{
&quot;id&quot;: 69,
&quot;remark&quot;: &quot;1&quot;,
&quot;img&quot;: &quot;/uploads/20240426/3fa3a06e01817797e1c227cc9b393829.png&quot;,
&quot;name&quot;: &quot;1234&quot;,
&quot;starttime&quot;: &quot;1713888000000&quot;,
&quot;endtime&quot;: &quot;1745510400000&quot;,
&quot;status&quot;: 2,
&quot;type&quot;: 1
},
{
&quot;id&quot;: 71,
&quot;remark&quot;: &quot;1&quot;,
&quot;img&quot;: &quot;/uploads/20240426/aa6787e1b8919d934e9e4caa5b75c32f.png&quot;,
&quot;name&quot;: &quot;1&quot;,
&quot;starttime&quot;: &quot;1713283200000&quot;,
&quot;endtime&quot;: &quot;1745510400000&quot;,
&quot;status&quot;: 2,
&quot;type&quot;: 2
},
{
&quot;id&quot;: 72,
&quot;remark&quot;: &quot;1&quot;,
&quot;img&quot;: &quot;/uploads/20240426/01ce7477117f76988c4de29c280d7240.png&quot;,
&quot;name&quot;: &quot;1&quot;,
&quot;starttime&quot;: &quot;1713974400000&quot;,
&quot;endtime&quot;: &quot;1745424000000&quot;,
&quot;status&quot;: 2,
&quot;type&quot;: 1
},
{
&quot;id&quot;: 70,
&quot;remark&quot;: &quot;1&quot;,
&quot;img&quot;: &quot;/uploads/20240426/652224884ca8838dc763c39fabff4dc8.png&quot;,
&quot;name&quot;: &quot;1&quot;,
&quot;starttime&quot;: &quot;1713974400000&quot;,
&quot;endtime&quot;: &quot;1745510400000&quot;,
&quot;status&quot;: 2,
&quot;type&quot;: 1
}
]
}
}</code></pre>