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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
| export default {
| height:'auto',
| calcHeight: 30,
| tip: false,
| searchShow: true,
| searchMenuSpan: 6,
| labelWidth:160,
| border: true,
| index: true,
| viewBtn: true,
| selection: true,
| dialogClickModal: false,
| column: [
| {
| label: "市级行政区划",
| prop: "PARENTXZQH",
| type: "input",
| },
| {
| label: "行政区划编号",
| prop: "XZQHBH",
| type: "input",
| },
| {
| label: "接警单位编号",
| prop: "JJDWBH",
| type: "input",
| },
| {
| label: "接警单位名称",
| prop: "JJDWMC",
| type: "input",
| },
| {
| label: "接警单编号",
| prop: "JJDBH",
| type: "input",
| },
| {
| label: "关联接警单编号",
| prop: "GLJJDBH",
| type: "input",
| hide: true,
| },
| {
| label: "来话类型编号",
| prop: "LHLXBH",
| type: "input",
| hide: true,
| },
| {
| label: "报警方式编号",
| prop: "BJFSBH",
| type: "input",
| hide: true,
| },
| {
| label: "是否自动生成警单",
| prop: "N_AUTO",
| type: "input",
| },
| {
| label: "特服号码",
| prop: "TFHM",
| type: "input",
| hide: true,
| },
| {
| label: "警单类型",
| prop: "JDLX",
| type: "input",
| hide: true,
| },
| {
| label: "接警员编号",
| prop: "JJYBH",
| type: "input",
| },
| {
| label: "接警员姓名",
| prop: "JJYXM",
| type: "input",
| },
| {
| label: "报警时间或呼入时间",
| prop: "BJSJ",
| type: "input",
| },
| {
| label: "接警时间或接听时间",
| prop: "JJSJ",
| type: "input",
| },
| {
| label: "报警时段代码",
| prop: "BJSD",
| type: "input",
| hide: true,
| },
| {
| label: "报警电话",
| prop: "BJDH",
| type: "input",
| },
| {
| label: "报警电话用户姓名",
| prop: "BJDHYHXM",
| type: "input",
| hide: true,
| },
| {
| label: "报警电话用户地址",
| prop: "BJDHYHDZ",
| type: "input",
| hide: true,
| },
| {
| label: "报警人姓名",
| prop: "BJRXM",
| type: "input",
| },
| {
| label: "报警人性别",
| prop: "BJRXB",
| type: "input",
| },
| {
| label: "联系电话",
| prop: "LXDH",
| type: "input",
| },
| {
| label: "事发地址",
| prop: "SFDZ",
| type: "input",
| },
| {
| label: "报警内容",
| prop: "BJNR",
| type: "input",
| },
| {
| label: "补充接警内容",
| prop: "BCJJNR",
| type: "input",
| hide: true,
| },
| {
| label: "管辖单位编号",
| prop: "GXDWBH",
| type: "input",
| hide: true,
| },
| {
| label: "管辖单位名称",
| prop: "GXDWMC",
| type: "input",
| hide: true,
| },
| {
| label: "有无效案件标识",
| prop: "YWXAJBS",
| type: "input",
| hide: true,
| },
| {
| label: "报警类别",
| prop: "BJLB",
| type: "input",
| hide: true,
| },
| {
| label: "报警类型",
| prop: "BJLX",
| type: "input",
| hide: true,
| },
| {
| label: "报警细类",
| prop: "BJXL",
| type: "input",
| hide: true,
| },
| {
| label: "事发场所",
| prop: "SFCS",
| type: "input",
| hide: true,
| },
| {
| label: "自动定位X坐标",
| prop: "ZDDWXZB",
| type: "input",
| hide: true,
| },
| {
| label: "自动定位Y坐标",
| prop: "ZDDWYZB",
| type: "input",
| hide: true,
| },
| {
| label: "有无危险物质",
| prop: "YWWXWZ",
| type: "input",
| hide: true,
| },
| {
| label: "有无爆炸/泄漏",
| prop: "YWBZXL",
| type: "input",
| hide: true,
| },
| {
| label: "有无被困人员",
| prop: "YWBKRY",
| type: "input",
| hide: true,
| },
| {
| label: "有无受伤人员",
| prop: "YWSSRY",
| type: "input",
| hide: true,
| },
| {
| label: "是否涉外",
| prop: "SFSW",
| type: "input",
| hide: true,
| },
| {
| label: "是否涉枪涉爆",
| prop: "SFSQSB",
| type: "input",
| hide: true,
| },
| {
| label: "122_伤害程度代码",
| prop: "SGCD",
| type: "input",
| hide: true,
| },
| {
| label: "122_涉警车牌号",
| prop: "BJCPH",
| type: "input",
| hide: true,
| },
| {
| label: "122_是否需要施救",
| prop: "SFXYSJ",
| type: "input",
| hide: true,
| },
| {
| label: "122_有无逃逸",
| prop: "YWTY",
| type: "input",
| hide: true,
| },
| {
| label: "122_逃逸方向",
| prop: "TYFX",
| type: "input",
| hide: true,
| },
| {
| label: "122_车辆类型代码",
| prop: "CLLX",
| type: "input",
| hide: true,
| },
| {
| label: "119_灾害事故类型",
| prop: "ZHSGLX",
| type: "input",
| hide: true,
| },
| {
| label: "119_起火物类别代码",
| prop: "QHWLB",
| type: "input",
| hide: true,
| },
| {
| label: "119_燃烧物性质代码",
| prop: "RSWXZ",
| type: "input",
| hide: true,
| },
| {
| label: "119_建筑类别代码",
| prop: "JZLB",
| type: "input",
| hide: true,
| },
| {
| label: "119_建筑结构代码",
| prop: "JZJG",
| type: "input",
| hide: true,
| },
| {
| label: "119_起火场所代码",
| prop: "QHCS",
| type: "input",
| hide: true,
| },
| {
| label: "sthy入库时间戳",
| prop: "RKSJC",
| type: "input",
| hide: true,
| },
| {
| label: "sthy更新时间戳",
| prop: "GXSJC",
| type: "input",
| hide: true,
| },
| {
| label: "接口时间",
| prop: "D_UPLOADTIME",
| type: "input",
| hide: true,
| },
| {
| label: "数据汇聚时间",
| prop: "D_GATHERTIME",
| type: "input",
| hide: true,
| },
| {
| label: "记录第一次入库时间戳",
| prop: "D_FIRSTTIME",
| type: "input",
| hide: true,
| },
| {
| label: "本机入库时间(更新时间)",
| prop: "D_LOCALTIME",
| type: "input",
| hide: true,
| },
| {
| label: "备注",
| prop: "MEMO",
| type: "input",
| hide: true,
| },
| {
| label: "",
| prop: "N_SOURCE",
| type: "input",
| hide: true,
| },
| {
| label: "",
| prop: "LDGBH",
| type: "input",
| hide: true,
| },
| {
| label: "",
| prop: "SDDWXZB",
| type: "input",
| hide: true,
| },
| {
| label: "",
| prop: "SDDWYZB",
| type: "input",
| hide: true,
| },
| {
| label: "",
| prop: "X",
| type: "input",
| hide: true,
| },
| {
| label: "",
| prop: "Y",
| type: "input",
| hide: true,
| },
| {
| label: "CTI挂机时间",
| prop: "GJSJ",
| type: "input",
| hide: true,
| },
| {
| label: "一案一码",
| prop: "AJBM",
| type: "input",
| hide: true,
| },
| {
| label: "系统时间",
| prop: "XTSJ",
| type: "input",
| hide: true,
| },
| ]
| }
|
|