4f64a5c75d1247073460065ad479e817fb5569bb
[usecase-ui.git] /
1 export const COMMUNICATION_FORM_ITEMS = [
2     /***
3         title: MARK THE ITEM NAME,
4         key:  MARK THE ITEM KEY,
5         type: MARKE THE ITEM TYPE, CAN BE ADDED IF NECESSARY: input/select/radio/city-select
6         required: IF REQUIRED, 
7         scoped: IF SCOPED NUMBERS, CAN BE EMITTED IF NOT
8         placeholder: IF PLACEHOLDER, CAN BE EMITTED IF NOT
9         options: IF ITEM NEEDS OPTIONS, CAN BE EMITTED IF NOT
10     ***/
11     {
12         title: 'Communication Service Name',
13         key: 'name',
14         type:"input",
15         required:true 
16
17     },
18     {
19         title: 'Max Number of UEs',
20         key: 'maxNumberofUEs',
21         type:"input",
22         scoped:true, 
23         required:true
24     },
25     {
26         title: 'Data Rate Downlink (Mbps)',
27         key: 'expDataRateDL',
28         type:"input",
29         scoped:true,
30         required:true
31     },
32     {
33         title: 'Latency',
34         key: 'latency',
35         type:"input",
36         scoped:true,
37         required:true
38     },
39     {
40         title: 'Data Rate Uplink (Mbps)',
41         key: 'expDataRateUL',
42         type:"input",
43         scoped:true,
44         required:true
45     },
46     {
47         title: 'Resource Sharing Level',
48         key: 'resourceSharingLevel',
49         type:"radio",
50         required:true,
51         options: [
52             {
53                 title: 'Shared',
54                 key: 'shared'
55             },
56             {
57                 title: 'Non-shared',
58                 key: 'non-shared'
59             }
60         ]
61     },
62     {
63         title: 'Mobility',
64         key: 'uEMobilityLevel',
65         type:"select",
66         required:true,
67         options: [
68             {
69                 title: 'Stationary',
70                 key: 'stationary'
71             },
72             {
73                 title: 'Nomadic',
74                 key: 'nomadic'
75             },
76             {
77                 title: 'Spatially Restricted Mobility',
78                 key: 'spatially restricted mobility'
79             },
80             {
81                 title: 'Fully Mobility',
82                 key: 'fully mobility'
83             }
84         ]
85     },
86     {
87         title: 'Area',
88         key: 'coverageArea',
89         type:"city-select",
90         required:true
91     },
92     {
93         title: 'Coverage Area Number',
94         key: 'coverageAreaNumber',
95         type:"input",
96         placeholder:"Please enter the coverage area number. use , to separate them if necessary",
97         required:false
98     }
99 ]
100
101 export const COMMUNICATION_FORM_ADDRESS = [
102     {
103         "id": "1",
104         "name": "Beijing",
105         "city": [
106             {
107                 "id": "101",
108                 "name": "Beijing",
109                 "county": [
110                     {
111                         "id": "1001",
112                         "name": "Haiding District",
113                         "street": [
114                             {
115                                 "id": "100101",
116                                 "name": "Wanshoulu Street"
117                             },
118                             {
119                                 "id": "100102",
120                                 "name": "Zhongguancun Street"
121                             },
122                             {
123                                 "id": "100103",
124                                 "name": "Haidian Street"
125                             },
126                             {
127                                 "id": "100104",
128                                 "name": "Xisanqi Street"
129                             }
130                         ]
131                     },
132                     {
133                         "id": "1002",
134                         "name": "Xicheng District",
135                         "street": [
136                             {
137                                 "id": "100201",
138                                 "name": "Guang'anmenwai Street"
139                             },
140                             {
141                                 "id": "100202",
142                                 "name": "Xuanwumen Street"
143                             },
144                             {
145                                 "id": "100203",
146                                 "name": "West Changan Street"
147                             },
148                             {
149                                 "id": "100204",
150                                 "name": "Financial Street"
151                             }
152                         ]
153                     },
154                     {
155                         "id": "1003",
156                         "name": "Changping District",
157                         "street": [
158                             {
159                                 "id": "100301",
160                                 "name": "Chengbei Street"
161                             },
162                             {
163                                 "id": "100302",
164                                 "name": "Chengnan Street"
165                             },
166                             {
167                                 "id": "100303",
168                                 "name": "Tiantongyuan North Street"
169                             },
170                             {
171                                 "id": "100304",
172                                 "name": "Tiantongyuan South Street"
173                             }
174                         ]
175                     }
176                 ]
177             }
178         ]
179     },
180     {
181         "id": "2",
182         "name": "Shanghai",
183         "city": [{
184             "id": "201",
185             "name": "Shanghai City",
186             "county": [{
187                 "id": "2001",
188                 "name": "udongxin District",
189                 "street": [
190                     {
191                         "id": "200101",
192                         "name": "Lujiazui Street"
193                     },
194                     {
195                         "id": "200102",
196                         "name": "Zhoujiadu Street"
197                     },
198                     {
199                         "id": "200103",
200                         "name": "Tangqiao Street"
201                     },
202                     {
203                         "id": "200104",
204                         "name": "Nanquanlu Street"
205                     }
206                 ]
207             },
208                 {
209                     "id": "2002",
210                     "name": "Jingan District",
211                     "street": [
212                         {
213                             "id": "200201",
214                             "name": "Jiangning Lu Street"
215                         },
216                         {
217                             "id": "200202",
218                             "name": "Jing'an Temple Street"
219                         },
220                         {
221                             "id": "200203",
222                             "name": "Nanjing West Road Street"
223                         }
224                     ]
225                 }
226             ]
227         }]
228     }
229 ]