-
Notifications
You must be signed in to change notification settings - Fork 0
/
form-structure.json
130 lines (130 loc) · 3.84 KB
/
form-structure.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"title": "Form Source Code Generator",
"style": "survey",
"description": "SURVEY DESCRIPTION",
"qInfo": [
{
"question": "姓名",
"style": "default",
"required": true,
"input": {
"type": "text",
"placeholder": "请填写你的姓名"
}
},
{
"question": "性别",
"style": "radio",
"required": true,
"choice": [
"男",
"女",
"其它",
"不愿透露"
],
"other": false
},
{
"question": "在读学校",
"style": "default",
"required": true,
"input": {
"type": "text",
"placeholder": "请填写你的在读学校"
}
},
{
"question": "年级",
"style": "select",
"required": true,
"choice": [
"初中",
"9年级(美制学校)",
"10年级",
"11年级",
"12年级",
"大一",
"大二",
"大三",
"大四",
"本科已毕业"
]
},
{
"question": "电子邮箱",
"style": "default",
"required": true,
"input": {
"type": "email",
"placeholder": "请填写你的电子邮箱"
}
},
{
"question": "微信号(如使用QQ,请标记为QQ号)",
"style": "default",
"required": true,
"input": {
"type": "text",
"placeholder": "请填写你的微信号(或QQ号)"
}
},
{
"question": "你通过什么方式了解到唯理工作坊?",
"style": "checkbox",
"required": false,
"choice": [
"周围人介绍",
"唯理中国公众号",
"其它公众号",
"唯理中国微博",
"唯理中国线上项目:线上课程、性别工作坊、播客唯理对谈、或唯理通讯",
"留学中介",
"其它(请注明)"
]
},
{
"question": "是否参加过唯理中国的以下活动?",
"style": "checkbox",
"required": false,
"choice": [
"2015-2018唯理书院",
"2019唯理书院被录取",
"参与线上课程或观看课程录像",
"其它(请注明)"
]
},
{
"question": "你是否正在中国大陆以外的地区上学,或是否在未来有出国学习的意向?",
"style": "radio",
"required": true,
"choice": [
"是",
"否"
]
},
{
"question": "请选择你希望报名的主题工作坊(多选):",
"style": "checkbox",
"required": false,
"choice": [
"探索社会科学",
"探索语言",
"思考数学与科学"
]
},
{
"question": "请简述你报名主题工作坊的原因:",
"style": "textarea",
"required": true,
"rowNum": 8
},
{
"question": "Textarea Question 2",
"style": "textarea",
"required": false,
"rowNum": 8
}
],
"database": true,
"email": true
}