赛事详情模块
<h3>获取赛事详情</h3>
<h4>简要描述:</h4>
<p>根据赛事ID和用户ID获取单个赛事的详细信息</p>
<h4>请求URL:</h4>
<p><code>/api/miniapp/events/{eventId}</code></p>
<h4>请求方式:</h4>
<p><code>GET</code></p>
<h4>参数:</h4>
<table>
<thead>
<tr>
<th>参数名</th>
<th>示例值</th>
<th>必选</th>
<th>类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td>eventId</td>
<td>2</td>
<td>是</td>
<td>Long</td>
<td>赛事ID(路径参数)</td>
</tr>
<tr>
<td>userId</td>
<td>1001</td>
<td>是</td>
<td>Long</td>
<td>用户ID</td>
</tr>
</tbody>
</table>
<h4>返回示例:</h4>
<pre><code class="language-json">{
&quot;msg&quot;: &quot;操作成功&quot;,
&quot;code&quot;: 200,
&quot;data&quot;: {
&quot;eventId&quot;: 2,
&quot;eventName&quot;: &quot;青岛市篮球锦标赛&quot;,
&quot;city&quot;: &quot;青岛市&quot;,
&quot;applyStart&quot;: &quot;2025-08-01&quot;,
&quot;applyEnd&quot;: &quot;2025-08-15&quot;,
&quot;eventStart&quot;: &quot;2025-08-25&quot;,
&quot;eventEnd&quot;: &quot;2025-09-25&quot;,
&quot;checkinLocation&quot;: &quot;青岛市体育中心&quot;,
&quot;contactPerson&quot;: &quot;李主任&quot;,
&quot;contactPhone&quot;: &quot;13800138002&quot;,
&quot;eventLevel&quot;: &quot;省级&quot;,
&quot;eventGroup&quot;: &quot;男子组、女子组&quot;,
&quot;guidingUnit&quot;: &quot;青岛市体育中心省体育局&quot;,
&quot;hostUnit&quot;: &quot;青岛市体育中心省体育局&quot;,
&quot;organizer&quot;: &quot;青岛市体育中心&quot;,
&quot;coOrganizer&quot;: &quot;青岛市政府&quot;,
&quot;supportUnit&quot;: &quot;山东省政府&quot;,
&quot;coverImage&quot;: &quot;/upload/match/cover2.jpg&quot;,
&quot;competitionRegulations&quot;: &quot;比赛规则详情...&quot;,
&quot;status&quot;: 2,
&quot;statusDesc&quot;: &quot;即将开始&quot;,
&quot;countdownDays&quot;: 5,
&quot;userRole&quot;: 1,
&quot;userRoleDesc&quot;: &quot;球员&quot;,
&quot;teamName&quot;: &quot;溜冰队&quot;,
&quot;registrationStatus&quot;: 1,
&quot;registrationStatusDesc&quot;: &quot;已通过&quot;
}
}</code></pre>