manage-client 3.3.183 → 3.3.185
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/.gradle/7.4/checksums/checksums.lock +0 -0
- package/.gradle/7.4/dependencies-accessors/dependencies-accessors.lock +0 -0
- package/.gradle/7.4/dependencies-accessors/gc.properties +0 -0
- package/.gradle/7.4/executionHistory/executionHistory.bin +0 -0
- package/.gradle/7.4/executionHistory/executionHistory.lock +0 -0
- package/.gradle/7.4/fileChanges/last-build.bin +0 -0
- package/.gradle/7.4/fileHashes/fileHashes.bin +0 -0
- package/.gradle/7.4/fileHashes/fileHashes.lock +0 -0
- package/.gradle/7.4/gc.properties +0 -0
- package/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
- package/.gradle/buildOutputCleanup/cache.properties +2 -0
- package/.gradle/buildOutputCleanup/outputFiles.bin +0 -0
- package/.gradle/file-system.probe +0 -0
- package/.gradle/vcs-1/gc.properties +0 -0
- package/hs_err_pid13052.log +206 -0
- package/package.json +1 -1
- package/src/components/sale/businessquery/ChangeMeterQuery.vue +6 -0
- package/src/components/sale/config/exportConfig.js +2094 -599
- package/src/components/webmeter/DrillData/LostContactAnalysisList.vue +28 -5
- package/src/filiale/macheng/RecordInfoQuery.vue +1 -1
- package/src/filiale/macheng/config/exportConfig.js +1 -1
- package/src/filiale/wenxi/ChangeMeterQuery.vue +11 -0
- package/src/filiale/wenxi/config/exportConfig.js +3 -3
- package/src/filiale/yangchun/ChangeMeterQuery.vue +716 -716
- package/src/filiale/yangchun/config/exportConfig.js +1230 -1230
- package/src/filiale/yangchun/sale.js +16 -16
- package/src/main.js +68 -68
|
@@ -181,6 +181,16 @@
|
|
|
181
181
|
condition="SLdays <= {} " placeholder="">
|
|
182
182
|
</div>
|
|
183
183
|
</div>
|
|
184
|
+
<div class="col-sm-2 form-group flex-row" style="white-space: nowrap">
|
|
185
|
+
<label class="font_normal_body">最新失联</label>
|
|
186
|
+
<div class="row">
|
|
187
|
+
<input type="text" style="width:27%" class="input_search" v-model="model.new_days1"
|
|
188
|
+
condition="new_days >= {} " placeholder="">
|
|
189
|
+
<label class="font_normal_body"> ≤ x ≤ </label>
|
|
190
|
+
<input type="text" style="width:27%" class="input_search" v-model="model.new_days2"
|
|
191
|
+
condition="new_days <= {} " placeholder="">
|
|
192
|
+
</div>
|
|
193
|
+
</div>
|
|
184
194
|
<div class="col-sm-2 form-group">
|
|
185
195
|
<label class="font_normal_body">是否通气</label>
|
|
186
196
|
<v-select
|
|
@@ -273,6 +283,9 @@
|
|
|
273
283
|
<th style="text-align:center">
|
|
274
284
|
<nobr>累计失联天数</nobr>
|
|
275
285
|
</th>
|
|
286
|
+
<th style="text-align:center">
|
|
287
|
+
<nobr>最新失联天数</nobr>
|
|
288
|
+
</th>
|
|
276
289
|
<th style="text-align:center">
|
|
277
290
|
<nobr>气表厂家</nobr>
|
|
278
291
|
</th>
|
|
@@ -310,6 +323,9 @@
|
|
|
310
323
|
<td style="text-align:center">
|
|
311
324
|
<nobr>{{row.sldays}}</nobr>
|
|
312
325
|
</td>
|
|
326
|
+
<td style="text-align:center">
|
|
327
|
+
<nobr>{{row.new_days}}</nobr>
|
|
328
|
+
</td>
|
|
313
329
|
<td style="text-align:center">
|
|
314
330
|
<nobr>{{row.f_meter_brand}}</nobr>
|
|
315
331
|
</td>
|
|
@@ -376,15 +392,21 @@
|
|
|
376
392
|
endDate: 'this.model.endDate'
|
|
377
393
|
}),
|
|
378
394
|
getfield:{
|
|
379
|
-
"f_userinfo_code":"客户编号",
|
|
380
|
-
"
|
|
395
|
+
"f_userinfo_code":"客户编号",
|
|
396
|
+
"f_user_name":"客户名称",
|
|
397
|
+
"f_residential_area":"小区",
|
|
398
|
+
"f_address":"客户地址",
|
|
399
|
+
"f_user_type":"客户类型",
|
|
400
|
+
"f_gasproperties":"用气性质",
|
|
381
401
|
"f_meternumber":"表号",
|
|
382
|
-
|
|
383
402
|
"f_startuse_date":"启用日期",
|
|
384
403
|
"ybdays":"应报天数",
|
|
385
404
|
"sbdays":"实报天数",
|
|
386
|
-
"max_interval_day":"最长失联天数",
|
|
387
|
-
"
|
|
405
|
+
"max_interval_day":"最长失联天数",
|
|
406
|
+
"sldays":"累计失联天数",
|
|
407
|
+
"new_days":"最新失联天数",
|
|
408
|
+
"f_meter_brand":"气表厂家",
|
|
409
|
+
"f_orgname":"组织机构"},
|
|
388
410
|
reportStr: null,
|
|
389
411
|
show: false,
|
|
390
412
|
showdetail:false,
|
|
@@ -517,6 +539,7 @@
|
|
|
517
539
|
return this.$showMessage("时间区间的开始和结束时间不能为空!")
|
|
518
540
|
}
|
|
519
541
|
this.condition = args.condition = this.$refs.paged.$refs.cri.condition + `${this.orgCondtionStr}`
|
|
542
|
+
console.log( args.model);
|
|
520
543
|
this.model.search(args.condition, args.model)
|
|
521
544
|
},
|
|
522
545
|
getorg(obj) {
|
|
@@ -22,7 +22,7 @@ export default{
|
|
|
22
22
|
'f_zuhu_phone': '租户电话','f_is_mgq': '是否煤改气','f_send_usegas_card': '是否发放天然气使用证','f_usetype':'使用类型',
|
|
23
23
|
'f_inputtor': '表册抄表员', 'f_book_inputtor': '档案抄表员','f_userfiles_address': '安装地址','f_gas_person': '通气人',
|
|
24
24
|
'f_meter_book_num': '抄表册编号','f_meter_book_sort': '抄表册顺序','f_times': '写卡次数','f_fillcard_times': '补卡次数',
|
|
25
|
-
'f_isband': '微信绑定', 'f_meter_type': '气表类型', 'f_metertitles': '表封号', 'f_packaging': '
|
|
25
|
+
'f_isband': '微信绑定', 'f_meter_type': '气表类型', 'f_metertitles': '表封号', 'f_packaging': '工程安装费'
|
|
26
26
|
},
|
|
27
27
|
// 把打印需要默认选中的字段名放在config数组中
|
|
28
28
|
chargeConfig: {
|
|
@@ -174,6 +174,11 @@
|
|
|
174
174
|
<input type="text" style="width:60%" class="input_search" v-model="model.f_metertitles"
|
|
175
175
|
condition="f_metertitles = '{}'" placeholder='表封号'>
|
|
176
176
|
</div>
|
|
177
|
+
<div class="col-sm-2 form-group">
|
|
178
|
+
<label class="font_normal_body">旧表封号</label>
|
|
179
|
+
<input type="text" style="width:60%" class="input_search" v-model="model.f_old_metertitles"
|
|
180
|
+
condition="f_old_metertitles = '{}'" placeholder='旧表封号'>
|
|
181
|
+
</div>
|
|
177
182
|
<!-- <div class="col-sm-2 form-group">-->
|
|
178
183
|
<!-- <label class="font_normal_body">旧 表 号</label>-->
|
|
179
184
|
<!-- <input type="text" style="width:60%" class="input_search" v-model="model.f_meternumber"-->
|
|
@@ -242,6 +247,9 @@
|
|
|
242
247
|
<th>
|
|
243
248
|
<nobr>表封号</nobr>
|
|
244
249
|
</th>
|
|
250
|
+
<th>
|
|
251
|
+
<nobr>旧表封号</nobr>
|
|
252
|
+
</th>
|
|
245
253
|
<th>
|
|
246
254
|
<nobr>旧气表品牌</nobr>
|
|
247
255
|
</th>
|
|
@@ -336,6 +344,9 @@
|
|
|
336
344
|
<td style="text-align: center;">
|
|
337
345
|
<nobr>{{row.f_metertitles}}</nobr>
|
|
338
346
|
</td>
|
|
347
|
+
<td style="text-align: center;">
|
|
348
|
+
<nobr>{{row.f_old_metertitles}}</nobr>
|
|
349
|
+
</td>
|
|
339
350
|
<td style="text-align: center;">
|
|
340
351
|
<nobr>{{row.f_meter_brand_old}}</nobr>
|
|
341
352
|
</td>
|
|
@@ -227,14 +227,14 @@ export default{
|
|
|
227
227
|
'f_userfiles_address': '安装地址', 'f_install_person': '安装人', 'f_gas_person': '通气人',
|
|
228
228
|
'f_meter_book_num': '抄表册编号', 'f_meter_book_sort': '抄表册顺序',
|
|
229
229
|
'f_times': '写卡次数',
|
|
230
|
-
'f_fillcard_times': '补卡次数', 'f_sendsuccess': '表同步状态', 'f_isband': '微信绑定', 'f_cost_type': '缴费类型'
|
|
231
|
-
|
|
230
|
+
'f_fillcard_times': '补卡次数', 'f_sendsuccess': '表同步状态', 'f_isband': '微信绑定', 'f_cost_type': '缴费类型',
|
|
231
|
+
'f_bank_accopen': '银行户名', 'f_bank_name': '银行名称', 'f_bank_account': '银行账号',
|
|
232
232
|
'f_bank_idnumber': '银行身份证号', 'f_bank_pay_number': '缴费编号'
|
|
233
233
|
},
|
|
234
234
|
|
|
235
235
|
changemeterConfig: {
|
|
236
236
|
'f_userinfo_code': '客户编号', 'f_olduserinfo_code': '档案编号', 'f_user_name': '客户名称', 'f_address': '客户地址', 'f_residential_area': '小区名称',
|
|
237
|
-
'f_type': '换表类型', 'f_changemeter_fee': '换表费', 'f_meternumber_old': '旧表号', 'f_meternumber': '新表号',
|
|
237
|
+
'f_type': '换表类型', 'f_changemeter_fee': '换表费', 'f_meternumber_old': '旧表号', 'f_meternumber': '新表号', 'f_metertitles': '表封号', 'f_old_metertitles': '旧表封号',
|
|
238
238
|
'f_meter_brand_old': '旧气表品牌', 'f_meter_brand': '新气表品牌', 'f_remanent_gas': '补气量', 'f_remanent_money': '补气金额',
|
|
239
239
|
'f_comments': '备注', 'f_change_operator': '换表人', 'f_state': '状态', 'f_operate_date': '操作日期', 'f_payment': '付款方式', 'f_othereason': '换表原因',
|
|
240
240
|
'f_operator': '人员', 'f_depname': '部门', 'f_orgname': '公司', 'f_meter_base': '气表底数', 'f_balance_amount': '表上余额', 'leigougas': '累购气量', 'leigoumoney': '累购金额'
|