用户登录接口
<p>[TOC]</p>
<h5>请求URL</h5>
<ul>
<li><code>http://localhost:3000/front/api/users/login</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;">username</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">string</td>
<td>用户名</td>
</tr>
<tr>
<td style="text-align: left;">password</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">string</td>
<td>密码</td>
</tr>
</tbody>
</table>
<h5>成功示例</h5>
<pre><code> {
&quot;error_code&quot;: 0,
&quot;msg&quot;: '登录成功!'
}</code></pre>
<h5>返回参数说明</h5>
<p>|参数名|类型|说明|
|error_code |number|错误码,2:输入结果不正确,0:成功|
|msg |string |中文提示 |</p>