文档
测试

我的赛事

POST
/api/my/match

请求头

参数名
类型
描述
必填
token
string
用户token
必填

请求参数

参数名
类型
描述
必填
page
int
页码,默认1
必填
limit
int
每页显示条是,默认10
必填

响应参数

参数名
类型
描述
必填
code
int
响应状态值
必填
msg
string
响应信息
必填
data
Object
响应数据
必填
count
int
数据条数
必填
list
Object-Array
必填
match_champion_prize_description
string
奖品描述
必填
sys_match_id
string
赛事ID
必填
match_title
string
赛事标题
必填
match_start_time
string
赛事开始时间,时间戳
必填
match_stop_time
string
赛事结束时间,时间戳
必填
match_image
string
赛事图片
必填
match_status
int
赛事状态,1:未开始。2:比赛中,3:已结束
必填
match_user_sign_count
int
已报名人数
必填
start_time
string
赛事开始时间,日期
必填
stop_time
string
赛事结束时间,日期
必填
match_status_title
string
赛事状态描述
必填
is_group
int
是否为团队赛,0:否,1:是
必填

说明 / 示例

请求示例: ```json { "page":1, "limit":10 } ``` 返回示例: ```json { "code": 1, "msg": "success", "data": { "count": 3, "list": [ { "match_champion_prize_description": "", "sys_match_id": "48994755022950400", "sys_sys_match_id": "48988132351152128", "match_title": "大学生长征挑战赛", "match_start_time": "1621428461", "match_stop_time": "1621926328", "match_image": "http://10.20.73.103:89/matchs_image/2021/05/2021-05-20/competition.png", "match_status": 3, "match_user_sign_count": 37, "is_group": 1, "start_time": "2021-05-19 20:47:41", "stop_time": "2021-05-25 15:05:28", "match_status_title": "End" }, { "match_champion_prize_description": "啊啊啊", "sys_match_id": "51119164743487488", "sys_sys_match_id": "51119111278694400", "match_title": "锦标赛个人赛", "match_start_time": "1621900800", "match_stop_time": "1622332800", "match_image": "http://10.20.73.103:89/matchs_image/2021/05/2021-05-25/saishi.png", "match_status": 2, "match_user_sign_count": 0, "is_group": 0, "start_time": "2021-05-25 08:00:00", "stop_time": "2021-05-30 08:00:00", "match_status_title": "Runing" } ] } } ```