文档
测试

获取活动详情(包括报名表)

GET
http://47.97.219.68:8080/web_public/get_activity_details?activityId=1

接口描述

获取活动详情(包括报名表)

请求参数

参数名
类型
描述
必填
activityId
int
示例:1
必填

说明 / 示例

```language { "msg": "success", "code": "0", "data": { "activityId": 1, //活动的id "posterImage": "http://picture.delonix.xyz/1582729172217955023", //活动的海报 "activityName": "深夜故事", //活动的标题 "registeredNumber": 0, //已报名人数 "address": "小谷围", //地址 "startTime": "2020-02-25 12:48:55", //开始时间 "endTime": "2020-05-17 19:47:03", //结束时间 "lightSpot": "无", //活动简介 "clickRate": 72, //浏览量 "attentionAmount": 1, //收藏量 "formContentVoList": [ //所有报名表信息 { "formContent": { //主报名人的信息 "openid": "48423948753248900", //openid "image": //头像 "http://picture.delonix.xyz/1582729172217955023", "nickname": "seehin", //昵称 "name": "genxin", //名字 "phone": "13413428269", //电话 "gender": 0, //性别,0为女性 "school": "GDUT", //学校 "customContents": [ //自定义内容 { "property": "微信", //选项名 "content": null, //内容 "sequence": 1, //位序 "type": 1, //类型 "value": [ //值 "13413428269" ] }, { "property": "邮箱", //选项 "content": null, //单选或多选内容 "sequence": 2, //位序 "type": 0, //类型 "value": [ //值 "10086@qq.com" ] }, { "property": "爱好", "content": [ "音乐", "游泳", "旅行" ], "sequence": 3, "type": 3, "value": [ "音乐", "游泳", "旅行" ] } ], "ticketName": "早鸟票", //票的名字 "ticketType": 0, //票的类型,0为免费 "ticketPrice": 0, //票的价格 "mid": 8 //报名表id }, "associatedFormContent": [ //联合报名表信息 { "openid": null, "image": null, "nickname": null, "name": "leshu", "phone": "13413428269", "gender": 0, "school": "GDUT", "customContents": [ { "property": "微信", "content": null, "sequence": 1, "type": 1, "value": [ "13413428269" ] }, { "property": "邮箱", "content": null, "sequence": 2, "type": 0, "value": [ "10086@qq.com" ] }, { "property": "爱好", "content": [ "音乐", "游泳", "旅行" ], "sequence": 3, "type": 3, "value": [ "音乐" ] } ], "ticketName": "早鸟票", "ticketType": 0, "ticketPrice": 0, "mid": 9 } ] } ] } } { "msg": "该活活动不存在", "code": "1", "data": null } ```