manage-client 3.2.262 → 3.2.264
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/dev-server.js +180 -180
- package/package.json +1 -1
- package/src/components/SellReport/ManageBusSummary.vue +2 -0
- package/src/filiale/ningjin/CallReport/CallReportMainPage.vue +146 -0
- package/src/filiale/ningjin/CallReport/DropDownBox.vue +64 -0
- package/src/filiale/ningjin/CallReport/IncomingTelegram.vue +187 -0
- package/src/filiale/ningjin/CallReport/PercentageComplete.vue +413 -0
- package/src/filiale/ningjin/CallReport/PercentageCompleteEchart.vue +150 -0
- package/src/filiale/ningjin/CallReport/RateBottom.vue +143 -0
- package/src/filiale/ningjin/CallReport/RateTop.vue +144 -0
- package/src/filiale/ningjin/CallReport/ScrollContent.vue +143 -0
- package/src/filiale/ningjin/CallReport/ServiceStatus.vue +371 -0
- package/src/filiale/ningjin/CallReport/SwiperTools.vue +145 -0
- package/src/filiale/ningjin/CallReport/SwiperTools2.vue +176 -0
- package/src/filiale/ningjin/CallReport/Time.vue +100 -0
- package/src/filiale/ningjin/CallReport/Userinfo.vue +69 -0
- package/src/filiale/ningjin/CallReport/WeatherData.vue +108 -0
- package/src/filiale/ningjin/CallReport/WorkOrderPage.vue +260 -0
- package/src/filiale/ningjin/FillCardQuery.vue +581 -0
- package/src/filiale/ningjin/GasStatistics.vue +39 -20
- package/src/filiale/ningjin/LostContactAnalysisList.vue +676 -0
- package/src/filiale/ningjin/ManageBusSummaryPeng.vue +241 -0
- package/src/filiale/ningjin/ManageHandSellMoney.vue +247 -0
- package/src/filiale/ningjin/ManageSellType.vue +284 -0
- package/src/filiale/ningjin/MeterExceptionList.vue +54 -9
- package/src/filiale/ningjin/UserLostContactAnalysis.vue +592 -0
- package/src/filiale/ningjin/config/exportConfig.js +35 -34
- package/src/filiale/ningjin/reportManage.js +6 -1
- package/src/filiale/ningjin/sale.js +26 -0
- package/src/filiale/ningjin/webmeterManage.js +5 -1
- package/src/filiale/wenxi/ChargeQuery.vue +26 -112
- package/src/filiale/wenxi/FmyGasDeviceQuery.vue +144 -17
- package/src/filiale/wenxi/GasDeviceQuery.vue +975 -0
- package/src/filiale/wenxi/RecordInfoQuery.vue +1 -1
- package/src/filiale/wenxi/sale.js +2 -0
- package/src/filiale/yuansheng/DayReportList.vue +15 -1
- package/node_modules.zip +0 -0
- package/static/newStyle/new_stretch_bottom.png +0 -0
- package/static/newStyle/new_stretch_top.png +0 -0
|
@@ -67,11 +67,6 @@
|
|
|
67
67
|
condition="f_devices_type = '{}'"
|
|
68
68
|
close-on-select></v-select>
|
|
69
69
|
</div>
|
|
70
|
-
<!-- <div class="col-sm-2 form-group">-->
|
|
71
|
-
<!-- <label class="font_normal_body">身份证号</label>-->
|
|
72
|
-
<!-- <input type="text" style="width:60%" class="input_search" v-model="model.f_idnumber"-->
|
|
73
|
-
<!-- condition="f_idnumber like '%{}%'" placeholder="身份证号">-->
|
|
74
|
-
<!-- </div>-->
|
|
75
70
|
<div class="col-sm-2 form-group">
|
|
76
71
|
<label class="font_normal_body">项目地址</label>
|
|
77
72
|
<input type="text" style="width:60%" class="input_search" v-model="model.f_address"
|
|
@@ -134,47 +129,85 @@
|
|
|
134
129
|
<th colspan="4"><nobr>燃气报警装置</nobr></th>
|
|
135
130
|
<th colspan="4"><nobr>设备信息</nobr></th>
|
|
136
131
|
<th colspan="5"><nobr>燃气连接管</nobr></th>
|
|
132
|
+
<th colspan="8"><nobr>燃气计量装置</nobr></th>
|
|
133
|
+
<th colspan="6"><nobr>控制器设备</nobr></th>
|
|
134
|
+
<th colspan="7"><nobr>调压设备</nobr></th>
|
|
135
|
+
<th colspan="6"><nobr>安检信息</nobr></th>
|
|
136
|
+
<th rowspan="2"><nobr>备注</nobr></th>
|
|
137
137
|
</tr>
|
|
138
138
|
|
|
139
139
|
<tr>
|
|
140
|
+
<!-- 用户信息-->
|
|
140
141
|
<th><nobr>客户编号</nobr></th>
|
|
141
142
|
<th><nobr>客户名称</nobr></th>
|
|
142
143
|
<th><nobr>联系电话</nobr></th>
|
|
143
144
|
<th><nobr>小区名称</nobr></th>
|
|
144
145
|
<th><nobr>地址</nobr></th>
|
|
145
146
|
<th><nobr>客户状态</nobr></th>
|
|
146
|
-
|
|
147
|
+
<!--燃气表-->
|
|
147
148
|
<th><nobr>表品牌</nobr></th>
|
|
148
149
|
<th><nobr>表号</nobr></th>
|
|
149
150
|
<th><nobr>类型</nobr></th>
|
|
150
151
|
<th><nobr>型号</nobr></th>
|
|
151
152
|
<th><nobr>左右表</nobr></th>
|
|
152
153
|
<th><nobr>安装位置</nobr></th>
|
|
153
|
-
<th><nobr
|
|
154
|
-
|
|
154
|
+
<th><nobr>表安装日期</nobr></th>
|
|
155
|
+
<!--建档日期-->
|
|
155
156
|
<th><nobr>建档日期</nobr></th>
|
|
156
157
|
<th><nobr>合同日期</nobr></th>
|
|
157
158
|
<th><nobr>开户日期</nobr></th>
|
|
158
|
-
<!--开户操作人-->
|
|
159
159
|
<th><nobr>开户操作人</nobr></th>
|
|
160
160
|
<th><nobr>通气日期</nobr></th>
|
|
161
161
|
<th><nobr>通气人</nobr></th>
|
|
162
162
|
<th><nobr>通气年限</nobr></th>
|
|
163
163
|
|
|
164
|
+
<!--燃气报警装置-->
|
|
164
165
|
<th><nobr>报警器品牌</nobr></th>
|
|
165
166
|
<th><nobr>数量</nobr></th>
|
|
166
167
|
<th><nobr>生产日期</nobr></th>
|
|
167
168
|
<th><nobr>超期提醒</nobr></th>
|
|
168
|
-
|
|
169
|
+
<!--设备信息-->
|
|
169
170
|
<th><nobr>设备名称</nobr></th>
|
|
170
171
|
<th><nobr>数量</nobr></th>
|
|
171
172
|
<th><nobr>生产日期</nobr></th>
|
|
172
173
|
<th><nobr>超期提醒</nobr></th>
|
|
173
|
-
|
|
174
|
+
<!--燃气连接管-->
|
|
174
175
|
<th><nobr>有无不锈钢波纹管</nobr></th>
|
|
175
176
|
<th><nobr>数量</nobr></th>
|
|
176
177
|
<th><nobr>有无自闭阀</nobr></th>
|
|
177
178
|
<th><nobr>数量</nobr></th>
|
|
179
|
+
<!--燃气计量装置-->
|
|
180
|
+
<th><nobr>品牌</nobr></th>
|
|
181
|
+
<th><nobr>编号</nobr></th>
|
|
182
|
+
<th><nobr>类型</nobr></th>
|
|
183
|
+
<th><nobr>型号</nobr></th>
|
|
184
|
+
<th><nobr>铅封号</nobr></th>
|
|
185
|
+
<th><nobr>生产日期</nobr></th>
|
|
186
|
+
<th><nobr>超期提醒</nobr></th>
|
|
187
|
+
<th><nobr>变更记录</nobr></th>
|
|
188
|
+
<!--控制器设备-->
|
|
189
|
+
<th><nobr>品牌</nobr></th>
|
|
190
|
+
<th><nobr>编号</nobr></th>
|
|
191
|
+
<th><nobr>型号</nobr></th>
|
|
192
|
+
<th><nobr>生产日期</nobr></th>
|
|
193
|
+
<th><nobr>超期提醒</nobr></th>
|
|
194
|
+
<th><nobr>变更记录</nobr></th>
|
|
195
|
+
|
|
196
|
+
<!--调压设备-->
|
|
197
|
+
<th><nobr>品牌</nobr></th>
|
|
198
|
+
<th><nobr>类型</nobr></th>
|
|
199
|
+
<th><nobr>型号</nobr></th>
|
|
200
|
+
<th><nobr>位置</nobr></th>
|
|
201
|
+
<th><nobr>生产日期</nobr></th>
|
|
202
|
+
<th><nobr>超期提醒</nobr></th>
|
|
203
|
+
<th><nobr>变更记录</nobr></th>
|
|
204
|
+
<!--安检信息-->
|
|
205
|
+
<th><nobr>安检日期</nobr></th>
|
|
206
|
+
<th><nobr>安检人员</nobr></th>
|
|
207
|
+
<th><nobr>用气总量</nobr></th>
|
|
208
|
+
<th><nobr>剩余气量</nobr></th>
|
|
209
|
+
<th><nobr>发现问题</nobr></th>
|
|
210
|
+
<th><nobr>整改日期</nobr></th>
|
|
178
211
|
|
|
179
212
|
</tr>
|
|
180
213
|
</template>
|
|
@@ -236,12 +269,6 @@
|
|
|
236
269
|
<td style="text-align: center;">
|
|
237
270
|
<nobr>{{row.f_gas_date}}</nobr>
|
|
238
271
|
</td>
|
|
239
|
-
<td style="text-align: center;">
|
|
240
|
-
<nobr>{{row.f_operator}}</nobr>
|
|
241
|
-
</td>
|
|
242
|
-
<td style="text-align: center;">
|
|
243
|
-
<nobr>{{row.f_createfile_date}}</nobr>
|
|
244
|
-
</td>
|
|
245
272
|
<td style="text-align: center;">
|
|
246
273
|
<nobr>{{row.f_install_person}}</nobr>
|
|
247
274
|
</td>
|
|
@@ -255,6 +282,7 @@
|
|
|
255
282
|
<nobr>{{row.ventilation_years}}</nobr>
|
|
256
283
|
</td>
|
|
257
284
|
|
|
285
|
+
|
|
258
286
|
<!--燃气报警装置-->
|
|
259
287
|
<td style="text-align: center;">
|
|
260
288
|
<nobr>{{row.f_icgd_brand}}</nobr>
|
|
@@ -296,6 +324,105 @@
|
|
|
296
324
|
<td style="text-align: center;">
|
|
297
325
|
<nobr>{{row.f_zibifa_num}}</nobr>
|
|
298
326
|
</td>
|
|
327
|
+
|
|
328
|
+
<!--燃气计量装置-->
|
|
329
|
+
<td style="text-align: center;">
|
|
330
|
+
<nobr>{{row.ranqi_brand}}</nobr>
|
|
331
|
+
</td>
|
|
332
|
+
<td style="text-align: center;">
|
|
333
|
+
<nobr>{{row.ranqi_devices_no}}</nobr>
|
|
334
|
+
</td>
|
|
335
|
+
<td style="text-align: center;">
|
|
336
|
+
<nobr>{{row.ranqi_equipment_type}}</nobr>
|
|
337
|
+
</td>
|
|
338
|
+
<td style="text-align: center;">
|
|
339
|
+
<nobr>{{row.ranqi_devices_model}}</nobr>
|
|
340
|
+
</td>
|
|
341
|
+
<td style="text-align: center;">
|
|
342
|
+
<nobr>{{row.f_gmd_lsnumber}}</nobr>
|
|
343
|
+
</td>
|
|
344
|
+
<td style="text-align: center;">
|
|
345
|
+
<nobr>{{row.ranqi_make_date}}</nobr>
|
|
346
|
+
</td>
|
|
347
|
+
<td style="text-align: center;" :class="$parent.$parent.$parent.formatTime(row.ranqi_exp_date).indexOf('已过期')!==-1? 'back-red' : 'back-blue'">
|
|
348
|
+
<nobr>{{$parent.$parent.$parent.formatTime(row.ranqi_exp_date)}}</nobr>
|
|
349
|
+
</td>
|
|
350
|
+
<td style="text-align: center;">
|
|
351
|
+
<nobr>
|
|
352
|
+
<span @click="$parent.$parent.$parent.dealmsg(row,row.ranqi_id,'燃气计量装置')"><a><b>变更记录</b></a></span>
|
|
353
|
+
</nobr>
|
|
354
|
+
</td>
|
|
355
|
+
<!--控制器设备-->
|
|
356
|
+
<td style="text-align: center;">
|
|
357
|
+
<nobr>{{row.control_brand}}</nobr>
|
|
358
|
+
</td>
|
|
359
|
+
<td style="text-align: center;">
|
|
360
|
+
<nobr>{{row.control_devices_no}}</nobr>
|
|
361
|
+
</td>
|
|
362
|
+
<td style="text-align: center;">
|
|
363
|
+
<nobr>{{row.control_devices_model}}</nobr>
|
|
364
|
+
</td>
|
|
365
|
+
<td style="text-align: center;">
|
|
366
|
+
<nobr>{{row.control_make_date}}</nobr>
|
|
367
|
+
</td>
|
|
368
|
+
<td style="text-align: center;" :class="$parent.$parent.$parent.formatTime(row.control_exp_date).indexOf('已过期')!==-1? 'back-red' : 'back-blue'">
|
|
369
|
+
<nobr>{{$parent.$parent.$parent.formatTime(row.control_exp_date)}}</nobr>
|
|
370
|
+
</td>
|
|
371
|
+
<td style="text-align: center;">
|
|
372
|
+
<nobr>
|
|
373
|
+
<span @click="$parent.$parent.$parent.dealmsg(row,row.control_id,'控制器设备')"><a><b>变更记录</b></a></span>
|
|
374
|
+
</nobr>
|
|
375
|
+
</td>
|
|
376
|
+
<!--调压设备-->
|
|
377
|
+
<td style="text-align: center;">
|
|
378
|
+
<nobr>{{row.tiaoya_brand}}</nobr>
|
|
379
|
+
</td>
|
|
380
|
+
<td style="text-align: center;">
|
|
381
|
+
<nobr>{{row.tiaoya_equipment_type}}</nobr>
|
|
382
|
+
</td>
|
|
383
|
+
<td style="text-align: center;">
|
|
384
|
+
<nobr>{{row.tiaoya_devices_model}}</nobr>
|
|
385
|
+
</td>
|
|
386
|
+
<td style="text-align: center;">
|
|
387
|
+
<nobr>{{row.tiaoya_install_position}}</nobr>
|
|
388
|
+
</td>
|
|
389
|
+
<td style="text-align: center;">
|
|
390
|
+
<nobr>{{row.tiaoya_make_date}}</nobr>
|
|
391
|
+
</td>
|
|
392
|
+
<td style="text-align: center;" :class="$parent.$parent.$parent.formatTime(row.tiaoya_exp_date).indexOf('已过期')!==-1? 'back-red' : 'back-blue'">
|
|
393
|
+
<nobr>{{$parent.$parent.$parent.formatTime(row.tiaoya_exp_date)}}</nobr>
|
|
394
|
+
</td>
|
|
395
|
+
<td style="text-align: center;">
|
|
396
|
+
<nobr>
|
|
397
|
+
<span @click="$parent.$parent.$parent.dealmsg(row,row.tiaoya_id,'调压设备')"><a><b>变更记录</b></a></span>
|
|
398
|
+
</nobr>
|
|
399
|
+
</td>
|
|
400
|
+
|
|
401
|
+
<!--安检信息-->
|
|
402
|
+
<td style="text-align: center;">
|
|
403
|
+
<nobr>{{row.f_upload_date}}</nobr>
|
|
404
|
+
</td>
|
|
405
|
+
<td style="text-align: center;">
|
|
406
|
+
<nobr>{{row.f_checker_name}}</nobr>
|
|
407
|
+
</td>
|
|
408
|
+
<td style="text-align: center;">
|
|
409
|
+
<nobr>{{row.f_total_gas}}</nobr>
|
|
410
|
+
</td>
|
|
411
|
+
<td style="text-align: center;">
|
|
412
|
+
<nobr>{{row.f_balance_gas}}</nobr>
|
|
413
|
+
</td>
|
|
414
|
+
<td style="text-align: center;">
|
|
415
|
+
<nobr>{{row.f_defect_content}}</nobr>
|
|
416
|
+
</td>
|
|
417
|
+
<td style="text-align: center;">
|
|
418
|
+
<nobr>{{row.f_repair_date}}</nobr>
|
|
419
|
+
</td>
|
|
420
|
+
|
|
421
|
+
<!--备注-->
|
|
422
|
+
<td style="text-align: center;">
|
|
423
|
+
<nobr>{{row.f_comments}}</nobr>
|
|
424
|
+
</td>
|
|
425
|
+
|
|
299
426
|
</template>
|
|
300
427
|
<template partial='foot'>
|
|
301
428
|
</template>
|