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