赛事列表模块
<h3>1.1 获取我的赛事列表</h3>
<h4>简要描述:</h4>
<p>获取用户参与的所有赛事列表,支持搜索、状态筛选。</p>
<h4>请求URL:</h4>
<p><code>/api/miniapp/events/myevents</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>
<tr>
<td>eventName</td>
<td>篮球</td>
<td>否</td>
<td>String</td>
<td>赛事名称(模糊查询,仅列表查询时有效)</td>
</tr>
<tr>
<td>eventStatus</td>
<td>1</td>
<td>否</td>
<td>Integer</td>
<td>赛事状态筛选(仅列表查询时有效)</td>
</tr>
</tbody>
</table>
<h4>状态筛选说明:</h4>
<table>
<thead>
<tr>
<th>状态值</th>
<th>状态描述</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td>0</td>
<td>全部</td>
<td>显示所有赛事(默认)</td>
</tr>
<tr>
<td>1</td>
<td>即将开始</td>
<td>赛事还未开始</td>
</tr>
<tr>
<td>2</td>
<td>报名中</td>
<td>正在接受报名</td>
</tr>
<tr>
<td>3</td>
<td>进行中</td>
<td>赛事正在进行</td>
</tr>
<tr>
<td>4</td>
<td>已完成</td>
<td>赛事已经结束</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
},
{
&quot;eventId&quot;: 1009,
&quot;eventName&quot;: &quot;2025 重庆残疾人篮球友谊赛&quot;,
&quot;provinceCity&quot;: &quot;重庆市&quot;,
&quot;site&quot;: &quot;重庆市残疾人活动中心&quot;,
&quot;applyStart&quot;: &quot;2025-08-28&quot;,
&quot;applyEnd&quot;: &quot;2025-09-12&quot;,
&quot;eventStart&quot;: &quot;2025-09-18&quot;,
&quot;eventEnd&quot;: &quot;2025-09-20&quot;,
&quot;principal&quot;: &quot;郑丽&quot;,
&quot;phone&quot;: 13100131009,
&quot;level&quot;: 3,
&quot;category&quot;: &quot;轮椅篮球组、听力障碍组&quot;,
&quot;picture&quot;: &quot;https://example.com/basketball9.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;根据残疾类别调整规则,每队6人,比赛3节每节10分钟...&quot;,
&quot;matchState&quot;: 0
}
]
}</code></pre>