赛事详情模块
<h3>2.1 获取赛事详情</h3>
<h4>简要描述:</h4>
<p>根据赛事ID获取单个赛事的详细信息</p>
<h4>请求URL:</h4>
<p><code>/api/miniapp/events/myevents?eventId={eventId}</code></p>
<h4>请求方式:</h4>
<p><code>GET</code></p>
<h4>请求头:</h4>
<pre><code>Authorization: Bearer {your_token}</code></pre>
<h4>参数:</h4>
<table>
<thead>
<tr>
<th>参数名</th>
<th>示例值</th>
<th>必选</th>
<th>类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td>eventId</td>
<td>1010</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;: 1010,
&quot;eventName&quot;: &quot;2025 南京退役军人篮球联赛&quot;,
&quot;provinceCity&quot;: &quot;江苏省南京市&quot;,
&quot;site&quot;: &quot;南京市双拥活动中心篮球场&quot;,
&quot;applyStart&quot;: &quot;2025-08-30&quot;,
&quot;applyEnd&quot;: &quot;2025-09-15&quot;,
&quot;eventStart&quot;: &quot;2025-09-20&quot;,
&quot;eventEnd&quot;: &quot;2025-09-25&quot;,
&quot;principal&quot;: &quot;钱峰&quot;,
&quot;phone&quot;: 13000130010,
&quot;level&quot;: 2,
&quot;category&quot;: &quot;按军种分组,每组4队&quot;,
&quot;picture&quot;: &quot;https://example.com/basketball10.jpg&quot;,
&quot;guideUnit&quot;: &quot;南京市双拥活动中心篮球场省体育局&quot;,
&quot;hostUnit&quot;: &quot;南京市双拥活动中心篮球场省体育局&quot;,
&quot;organizer&quot;: &quot;南京市双拥活动中心篮球场&quot;,
&quot;coOrganizer&quot;: &quot;青岛市政府&quot;,
&quot;supportUnit&quot;: &quot;山东省体育局&quot;,
&quot;competitionRegulations&quot;: &quot;每队10人,比赛4节每节10分钟,发扬军人体育精神...&quot;,
&quot;matchState&quot;: 0
}
}</code></pre>