获取指定类型的服务列表
<p>[TOC]</p>
<h5>简要描述</h5>
<ul>
<li>获取指定类型的服务列表</li>
</ul>
<h5>请求URL</h5>
<ul>
<li><code>/nykapi/v4.service/getServiceList</code></li>
</ul>
<h5>请求方式</h5>
<ul>
<li>GET </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;">power_type</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">int</td>
<td>1睡眠,2快乐,3记忆,4认知</td>
</tr>
<tr>
<td style="text-align: left;">page</td>
<td style="text-align: left;">否</td>
<td style="text-align: left;">int</td>
<td>当前页</td>
</tr>
<tr>
<td style="text-align: left;">limit</td>
<td style="text-align: left;">否</td>
<td style="text-align: left;">int</td>
<td>每页条数</td>
</tr>
</tbody>
</table>
<h5>返回示例</h5>
<pre><code>{
&quot;code&quot;: 200,
&quot;msg&quot;: &quot;success&quot;,
&quot;data&quot;: {
&quot;page&quot;: {
&quot;page&quot;: 1,
&quot;limit&quot;: 10,
&quot;count&quot;: 1,
&quot;pageCount&quot;: 1,
&quot;nextPage&quot;: false
},
&quot;archives&quot;: [
{
&quot;id&quot;: 5252,
&quot;store_name&quot;: &quot;上门服务&quot;,
&quot;price&quot;: &quot;200.00&quot;,
&quot;image&quot;: &quot;http://naoyuekang-weixindev.oss-cn-chengdu.aliyuncs.com/nd/p/2023/05/30/168543588088541.jpg&quot;
}
]
}
}</code></pre>