manage-client 3.3.195 → 3.3.196
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/package.json +1 -1
- package/src/components/sale/businessquery/AreaChargeQuery.vue +4 -0
- package/src/components/sale/businessquery/AreaGeneralQuery.vue +4 -0
- package/src/components/sale/businessquery/ArrearsQuery.vue +4 -0
- package/src/components/sale/businessquery/BalanceTable.vue +4 -0
- package/src/components/sale/businessquery/CommunityPaymen.vue +4 -0
- package/src/components/sale/businessquery/HandBookQuery.vue +4 -0
- package/src/components/sale/businessquery/HandBookTwoQuery.vue +4 -0
- package/src/components/sale/businessquery/HandGasPropertiesQuery.vue +4 -0
- package/src/components/sale/businessquery/HandPeopleQuery.vue +4 -0
- package/src/components/sale/businessquery/HandRateQuery.vue +4 -0
- package/src/components/sale/businessquery/Handgasquery.vue +4 -0
- package/src/components/sale/businessquery/MonthGasQuery.vue +4 -0
- package/src/components/sale/businessquery/NoBusinessQuery.vue +4 -0
- package/src/components/sale/businessquery/PlotSummaryQuery.vue +4 -0
- package/src/components/sale/businessquery/ProceedsOper.vue +4 -0
- package/src/components/sale/businessquery/ResidentialCardQuery.vue +4 -0
- package/src/components/sale/businessquery/ResidentialQuery.vue +4 -0
- package/src/components/sale/businessquery/SellOrgnameQuery.vue +4 -0
- package/src/components/sale/businessquery/SellPeopleQuery.vue +4 -0
- package/src/components/sale/businessquery/SellingHand.vue +4 -0
- package/src/components/sale/businessquery/UnhandBusiness.vue +4 -0
- package/src/components/sale/businessquery/UserSellHeadDetail.vue +4 -0
- package/src/components/sale/businessquery/YingShouMingXi.vue +4 -0
- package/src/components/sale/businessquery/YonghuJieyu.vue +4 -0
- package/src/components/sale/businessquery/usergas.vue +4 -0
- package/src/filiale/jingyang/ChargeQuery.vue +156 -127
- package/src/filiale/kelai/AreaChargeQuery.vue +4 -0
- package/src/filiale/qingtongxia/ChargeQuery.vue +11 -1
- package/src/filiale/qingtongxia/config/exportConfig.js +474 -474
- package/src/filiale/taizhoukesi/NewGasStatistics.vue +16 -13
- package/src/filiale/yuncheng/DeviceQuery.vue +602 -0
- package/src/filiale/yuncheng/sale.js +3 -0
package/package.json
CHANGED
|
@@ -236,6 +236,10 @@
|
|
|
236
236
|
}
|
|
237
237
|
this.footer.push(footerData);
|
|
238
238
|
this.other.push(otherInData);
|
|
239
|
+
let date = []
|
|
240
|
+
date.push(`起始时间:${this.$refs.paged.$refs.cri.model.startDate}`)
|
|
241
|
+
date.push(`终止时间:${this.$refs.paged.$refs.cri.model.endDate}`)
|
|
242
|
+
this.other.push(date)
|
|
239
243
|
},
|
|
240
244
|
async getaddress(){
|
|
241
245
|
console.log('开始获取小区')
|
|
@@ -447,6 +447,10 @@
|
|
|
447
447
|
}
|
|
448
448
|
this.footer.push(footerData);
|
|
449
449
|
this.other.push(otherInData);
|
|
450
|
+
let date = []
|
|
451
|
+
date.push(`起始时间:${this.$refs.paged.$refs.cri.model.startDate}`)
|
|
452
|
+
date.push(`终止时间:${this.$refs.paged.$refs.cri.model.endDate}`)
|
|
453
|
+
this.other.push(date)
|
|
450
454
|
},
|
|
451
455
|
async getaddress(){
|
|
452
456
|
console.log('开始获取小区')
|
|
@@ -749,6 +749,10 @@ export default {
|
|
|
749
749
|
}
|
|
750
750
|
this.footer.push(footerData);
|
|
751
751
|
this.other.push(otherInData);
|
|
752
|
+
let date = []
|
|
753
|
+
date.push(`起始时间:${this.$refs.paged.$refs.cri.model.startDate}`)
|
|
754
|
+
date.push(`终止时间:${this.$refs.paged.$refs.cri.model.endDate}`)
|
|
755
|
+
this.other.push(date)
|
|
752
756
|
},
|
|
753
757
|
async getaddress() {
|
|
754
758
|
console.log('开始获取小区')
|
|
@@ -325,6 +325,10 @@
|
|
|
325
325
|
}
|
|
326
326
|
this.footer.push(footerData);
|
|
327
327
|
this.other.push(otherInData);
|
|
328
|
+
let date = []
|
|
329
|
+
date.push(`起始时间:${this.$refs.paged.$refs.cri.model.startDate}`)
|
|
330
|
+
date.push(`终止时间:${this.$refs.paged.$refs.cri.model.endDate}`)
|
|
331
|
+
this.other.push(date)
|
|
328
332
|
},
|
|
329
333
|
search(){
|
|
330
334
|
this.$refs.paged.$refs.cri.search()
|
|
@@ -230,6 +230,10 @@
|
|
|
230
230
|
}
|
|
231
231
|
this.footer.push(footerData);
|
|
232
232
|
this.other.push(otherInData);
|
|
233
|
+
let date = []
|
|
234
|
+
date.push(`起始时间:${this.$refs.paged.$refs.cri.model.startDate}`)
|
|
235
|
+
date.push(`终止时间:${this.$refs.paged.$refs.cri.model.endDate}`)
|
|
236
|
+
this.other.push(date)
|
|
233
237
|
},
|
|
234
238
|
async getaddress() {
|
|
235
239
|
console.log('开始获取小区')
|
|
@@ -474,6 +474,10 @@
|
|
|
474
474
|
}
|
|
475
475
|
this.footer.push(footerData);
|
|
476
476
|
this.other.push(otherInData);
|
|
477
|
+
let date = []
|
|
478
|
+
date.push(`起始时间:${this.$refs.paged.$refs.cri.model.startDate}`)
|
|
479
|
+
date.push(`终止时间:${this.$refs.paged.$refs.cri.model.endDate}`)
|
|
480
|
+
this.other.push(date)
|
|
477
481
|
},
|
|
478
482
|
async getaddress(){
|
|
479
483
|
// await self.$LoadParams.loadMeterBook(self.f_filialeid)
|
|
@@ -486,6 +486,10 @@
|
|
|
486
486
|
}
|
|
487
487
|
this.footer.push(footerData);
|
|
488
488
|
this.other.push(otherInData);
|
|
489
|
+
let date = []
|
|
490
|
+
date.push(`起始时间:${this.$refs.paged.$refs.cri.model.startDate}`)
|
|
491
|
+
date.push(`终止时间:${this.$refs.paged.$refs.cri.model.endDate}`)
|
|
492
|
+
this.other.push(date)
|
|
489
493
|
},
|
|
490
494
|
async getaddress(){
|
|
491
495
|
// await self.$LoadParams.loadMeterBook(self.f_filialeid)
|
|
@@ -464,6 +464,10 @@
|
|
|
464
464
|
}
|
|
465
465
|
this.footer.push(footerData);
|
|
466
466
|
this.other.push(otherInData);
|
|
467
|
+
let date = []
|
|
468
|
+
date.push(`起始时间:${this.$refs.paged.$refs.cri.model.startDate}`)
|
|
469
|
+
date.push(`终止时间:${this.$refs.paged.$refs.cri.model.endDate}`)
|
|
470
|
+
this.other.push(date)
|
|
467
471
|
},
|
|
468
472
|
async getaddress(){
|
|
469
473
|
// await self.$LoadParams.loadMeterBook(self.f_filialeid)
|
|
@@ -494,6 +494,10 @@
|
|
|
494
494
|
}
|
|
495
495
|
this.footer.push(footerData);
|
|
496
496
|
this.other.push(otherInData);
|
|
497
|
+
let date = []
|
|
498
|
+
date.push(`起始时间:${this.$refs.paged.$refs.cri.model.startDate}`)
|
|
499
|
+
date.push(`终止时间:${this.$refs.paged.$refs.cri.model.endDate}`)
|
|
500
|
+
this.other.push(date)
|
|
497
501
|
},
|
|
498
502
|
async getaddress(){
|
|
499
503
|
// await self.$LoadParams.loadMeterBook(self.f_filialeid)
|
|
@@ -374,6 +374,10 @@
|
|
|
374
374
|
}
|
|
375
375
|
this.footer.push(footerData);
|
|
376
376
|
this.other.push(otherInData);
|
|
377
|
+
let date = []
|
|
378
|
+
date.push(`起始时间:${this.$refs.paged.$refs.cri.model.startDate}`)
|
|
379
|
+
date.push(`终止时间:${this.$refs.paged.$refs.cri.model.endDate}`)
|
|
380
|
+
this.other.push(date)
|
|
377
381
|
},
|
|
378
382
|
userTypeChange () {
|
|
379
383
|
this.gasproperties = []
|
|
@@ -312,6 +312,10 @@
|
|
|
312
312
|
}
|
|
313
313
|
this.footer.push(footerData);
|
|
314
314
|
this.other.push(otherInData);
|
|
315
|
+
let date = []
|
|
316
|
+
date.push(`起始时间:${this.$refs.paged.$refs.cri.model.startDate}`)
|
|
317
|
+
date.push(`终止时间:${this.$refs.paged.$refs.cri.model.endDate}`)
|
|
318
|
+
this.other.push(date)
|
|
315
319
|
},
|
|
316
320
|
userTypeChange () {
|
|
317
321
|
this.gasproperties=[]
|
|
@@ -337,6 +337,10 @@
|
|
|
337
337
|
}
|
|
338
338
|
this.footer.push(footerData);
|
|
339
339
|
this.other.push(otherInData);
|
|
340
|
+
let date = []
|
|
341
|
+
date.push(`起始时间:${this.$refs.paged.$refs.cri.model.startDate}`)
|
|
342
|
+
date.push(`终止时间:${this.$refs.paged.$refs.cri.model.endDate}`)
|
|
343
|
+
this.other.push(date)
|
|
340
344
|
},
|
|
341
345
|
userTypeChange () {
|
|
342
346
|
this.gasproperties=[]
|
|
@@ -561,6 +561,10 @@
|
|
|
561
561
|
}
|
|
562
562
|
this.footer.push(footerData);
|
|
563
563
|
this.other.push(otherInData);
|
|
564
|
+
let date = []
|
|
565
|
+
date.push(`起始时间:${this.$refs.paged.$refs.cri.model.startDate}`)
|
|
566
|
+
date.push(`终止时间:${this.$refs.paged.$refs.cri.model.endDate}`)
|
|
567
|
+
this.other.push(date)
|
|
564
568
|
},
|
|
565
569
|
async getaddress(){
|
|
566
570
|
console.log('开始获取小区')
|
|
@@ -305,6 +305,10 @@
|
|
|
305
305
|
}
|
|
306
306
|
this.footer.push(footerData);
|
|
307
307
|
this.other.push(otherInData);
|
|
308
|
+
let date = []
|
|
309
|
+
date.push(`起始时间:${this.$refs.paged.$refs.cri.model.startDate}`)
|
|
310
|
+
date.push(`终止时间:${this.$refs.paged.$refs.cri.model.endDate}`)
|
|
311
|
+
this.other.push(date)
|
|
308
312
|
},
|
|
309
313
|
async getaddress(){
|
|
310
314
|
console.log('开始获取小区')
|
|
@@ -286,6 +286,10 @@
|
|
|
286
286
|
}
|
|
287
287
|
this.footer.push(footerData);
|
|
288
288
|
this.other.push(otherInData);
|
|
289
|
+
let date = []
|
|
290
|
+
date.push(`起始时间:${this.$refs.paged.$refs.cri.model.startDate}`)
|
|
291
|
+
date.push(`终止时间:${this.$refs.paged.$refs.cri.model.endDate}`)
|
|
292
|
+
this.other.push(date)
|
|
289
293
|
},
|
|
290
294
|
search(){
|
|
291
295
|
this.$refs.paged.$refs.cri.search()
|
|
@@ -272,6 +272,10 @@
|
|
|
272
272
|
}
|
|
273
273
|
this.footer.push(footerData);
|
|
274
274
|
this.other.push(otherInData);
|
|
275
|
+
let date = []
|
|
276
|
+
date.push(`起始时间:${this.$refs.paged.$refs.cri.model.startDate}`)
|
|
277
|
+
date.push(`终止时间:${this.$refs.paged.$refs.cri.model.endDate}`)
|
|
278
|
+
this.other.push(date)
|
|
275
279
|
},
|
|
276
280
|
async getaddress() {
|
|
277
281
|
console.log('开始获取小区')
|
|
@@ -310,6 +310,10 @@
|
|
|
310
310
|
}
|
|
311
311
|
this.footer.push(footerData);
|
|
312
312
|
this.other.push(otherInData);
|
|
313
|
+
let date = []
|
|
314
|
+
date.push(`起始时间:${this.$refs.paged.$refs.cri.model.startDate}`)
|
|
315
|
+
date.push(`终止时间:${this.$refs.paged.$refs.cri.model.endDate}`)
|
|
316
|
+
this.other.push(date)
|
|
313
317
|
},
|
|
314
318
|
async getaddress() {
|
|
315
319
|
console.log('开始获取小区')
|
|
@@ -458,6 +458,10 @@
|
|
|
458
458
|
}
|
|
459
459
|
this.footer.push(footerData);
|
|
460
460
|
this.other.push(otherInData);
|
|
461
|
+
let date = []
|
|
462
|
+
date.push(`起始时间:${this.$refs.paged.$refs.cri.model.startDate}`)
|
|
463
|
+
date.push(`终止时间:${this.$refs.paged.$refs.cri.model.endDate}`)
|
|
464
|
+
this.other.push(date)
|
|
461
465
|
},
|
|
462
466
|
async getaddress(){
|
|
463
467
|
console.log('开始获取小区')
|
|
@@ -523,6 +523,10 @@
|
|
|
523
523
|
}
|
|
524
524
|
this.footer.push(footerData);
|
|
525
525
|
this.other.push(otherInData);
|
|
526
|
+
let date = []
|
|
527
|
+
date.push(`起始时间:${this.$refs.paged.$refs.cri.model.startDate}`)
|
|
528
|
+
date.push(`终止时间:${this.$refs.paged.$refs.cri.model.endDate}`)
|
|
529
|
+
this.other.push(date)
|
|
526
530
|
},
|
|
527
531
|
async getaddress(){
|
|
528
532
|
console.log('开始获取小区')
|
|
@@ -296,6 +296,10 @@
|
|
|
296
296
|
}
|
|
297
297
|
this.footer.push(footerData);
|
|
298
298
|
this.other.push(otherInData);
|
|
299
|
+
let date = []
|
|
300
|
+
date.push(`起始时间:${this.$refs.paged.$refs.cri.model.startDate}`)
|
|
301
|
+
date.push(`终止时间:${this.$refs.paged.$refs.cri.model.endDate}`)
|
|
302
|
+
this.other.push(date)
|
|
299
303
|
},
|
|
300
304
|
search(){
|
|
301
305
|
this.$refs.paged.$refs.cri.search()
|
|
@@ -206,6 +206,10 @@
|
|
|
206
206
|
let footerData = [], exportfield = this.getfield;
|
|
207
207
|
this.footer.push(footerData);
|
|
208
208
|
this.other.push(otherInData);
|
|
209
|
+
let date = []
|
|
210
|
+
date.push(`起始时间:${this.$refs.paged.$refs.cri.model.startDate}`)
|
|
211
|
+
date.push(`终止时间:${this.$refs.paged.$refs.cri.model.endDate}`)
|
|
212
|
+
this.other.push(date)
|
|
209
213
|
},
|
|
210
214
|
search(){
|
|
211
215
|
this.$refs.paged.$refs.cri.search()
|
|
@@ -422,6 +422,10 @@
|
|
|
422
422
|
}
|
|
423
423
|
this.footer.push(footerData);
|
|
424
424
|
this.other.push(otherInData);
|
|
425
|
+
let date = []
|
|
426
|
+
date.push(`起始时间:${this.$refs.paged.$refs.cri.model.startDate}`)
|
|
427
|
+
date.push(`终止时间:${this.$refs.paged.$refs.cri.model.endDate}`)
|
|
428
|
+
this.other.push(date)
|
|
425
429
|
},
|
|
426
430
|
search(){
|
|
427
431
|
this.$refs.paged.$refs.cri.search()
|
|
@@ -369,6 +369,10 @@
|
|
|
369
369
|
}
|
|
370
370
|
this.footer.push(footerData);
|
|
371
371
|
this.other.push(otherInData);
|
|
372
|
+
let date = []
|
|
373
|
+
date.push(`起始时间:${this.$refs.paged.$refs.cri.model.startDate}`)
|
|
374
|
+
date.push(`终止时间:${this.$refs.paged.$refs.cri.model.endDate}`)
|
|
375
|
+
this.other.push(date)
|
|
372
376
|
},
|
|
373
377
|
async getinputtores () {
|
|
374
378
|
// 获取抄表员
|
|
@@ -216,6 +216,10 @@
|
|
|
216
216
|
}
|
|
217
217
|
this.footer.push(footerData);
|
|
218
218
|
this.other.push(otherInData);
|
|
219
|
+
let date = []
|
|
220
|
+
date.push(`起始时间:${this.$refs.paged.$refs.cri.model.startDate}`)
|
|
221
|
+
date.push(`终止时间:${this.$refs.paged.$refs.cri.model.endDate}`)
|
|
222
|
+
this.other.push(date)
|
|
219
223
|
},
|
|
220
224
|
// userTypeChange () {
|
|
221
225
|
// this.gasproperties=[]
|
|
@@ -178,6 +178,10 @@ export default {
|
|
|
178
178
|
}
|
|
179
179
|
this.footer.push(footerData);
|
|
180
180
|
this.other.push(otherInData);
|
|
181
|
+
let date = []
|
|
182
|
+
date.push(`起始时间:${this.$refs.paged.$refs.cri.model.startDate}`)
|
|
183
|
+
date.push(`终止时间:${this.$refs.paged.$refs.cri.model.endDate}`)
|
|
184
|
+
this.other.push(date)
|
|
181
185
|
},
|
|
182
186
|
userTypeChange () {
|
|
183
187
|
this.gasproperties=[]
|