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
| export default {
| height:'auto',
| calcHeight: 30,
| tip: false,
| searchShow: true,
| searchMenuSpan: 6,
| border: true,
| labelWidth:160,
| index: true,
| viewBtn: true,
| selection: true,
| dialogClickModal: false,
| column: [
| {
| label: "市级行政区划",
| prop: "PARENTXZQH",
| type: "input",
| },
| {
| label: "行政区划编号",
| prop: "XZQHBH",
| type: "input",
| },
| {
| label: "处警单编号",
| prop: "CJDBH",
| type: "input",
| },
| {
| label: "接警单编号",
| prop: "JJDBH",
| type: "input",
| },
| {
| label: "通知单编号",
| prop: "TZDBH",
| type: "input",
| },
| {
| label: "处警单位编号",
| prop: "CJDWBH",
| type: "input",
| },
| {
| label: "处警单位名称",
| prop: "CJDWMC",
| type: "input",
| },
| {
| label: "处警单位地域代码",
| prop: "CJDWDY",
| type: "input",
| },
| {
| label: "处警员编号",
| prop: "CJYBH",
| type: "input",
| },
| {
| label: "处警员姓名",
| prop: "CJYXM",
| type: "input",
| },
| {
| label: "创建时间==入库时间戳",
| prop: "CJSJ",
| type: "input",
| hide: true,
| },
| {
| label: "到达现场时间",
| prop: "DDXCSJ",
| type: "input",
| },
| {
| label: "首次反馈时间",
| prop: "SCFKSJ",
| type: "input",
| },
| {
| label: "处理完毕时间",
| prop: "CLWBSJ",
| type: "input",
| hide: true,
| },
| {
| label: "更新时间戳",
| prop: "GXSJC",
| type: "input",
| hide: true,
| },
| {
| label: "反馈内容",
| prop: "FKNR",
| type: "input",
| },
| {
| label: "出动人员",
| prop: "CDRY",
| type: "input",
| },
| {
| label: "出动车辆",
| prop: "CDCL",
| type: "input",
| hide: true,
| },
| {
| label: "处警类别",
| prop: "CJLB",
| type: "input",
| hide: true,
| },
| {
| label: "处警类型",
| prop: "CJLX",
| type: "input",
| hide: true,
| },
| {
| label: "处警细类",
| prop: "CJXL",
| type: "input",
| hide: true,
| },
| {
| label: "接警单中的接警时间",
| prop: "JJSJ",
| 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: "CZLX",
| type: "input",
| hide: true,
| },
| {
| label: "系统时间",
| prop: "XTSJ",
| type: "input",
| hide: true,
| },
| ]
| }
|
|