manage-client 3.3.195 → 3.3.197

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.
Files changed (46) hide show
  1. package/package.json +1 -1
  2. package/src/components/sale/businessquery/AreaChargeQuery.vue +4 -0
  3. package/src/components/sale/businessquery/AreaGeneralQuery.vue +4 -0
  4. package/src/components/sale/businessquery/ArrearsQuery.vue +4 -0
  5. package/src/components/sale/businessquery/BalanceTable.vue +4 -0
  6. package/src/components/sale/businessquery/CommunityPaymen.vue +4 -0
  7. package/src/components/sale/businessquery/HandBookQuery.vue +4 -0
  8. package/src/components/sale/businessquery/HandBookTwoQuery.vue +4 -0
  9. package/src/components/sale/businessquery/HandGasPropertiesQuery.vue +4 -0
  10. package/src/components/sale/businessquery/HandPeopleQuery.vue +4 -0
  11. package/src/components/sale/businessquery/HandRateQuery.vue +4 -0
  12. package/src/components/sale/businessquery/Handgasquery.vue +4 -0
  13. package/src/components/sale/businessquery/MonthGasQuery.vue +4 -0
  14. package/src/components/sale/businessquery/NoBusinessQuery.vue +4 -0
  15. package/src/components/sale/businessquery/PlotSummaryQuery.vue +4 -0
  16. package/src/components/sale/businessquery/ProceedsOper.vue +4 -0
  17. package/src/components/sale/businessquery/ResidentialCardQuery.vue +4 -0
  18. package/src/components/sale/businessquery/ResidentialQuery.vue +4 -0
  19. package/src/components/sale/businessquery/SellOrgnameQuery.vue +4 -0
  20. package/src/components/sale/businessquery/SellPeopleQuery.vue +4 -0
  21. package/src/components/sale/businessquery/SellingHand.vue +4 -0
  22. package/src/components/sale/businessquery/UnhandBusiness.vue +4 -0
  23. package/src/components/sale/businessquery/UserSellHeadDetail.vue +4 -0
  24. package/src/components/sale/businessquery/YingShouMingXi.vue +4 -0
  25. package/src/components/sale/businessquery/YonghuJieyu.vue +4 -0
  26. package/src/components/sale/businessquery/usergas.vue +4 -0
  27. package/src/components/webmeter/DrillData/GetNoMetereadData.vue +26 -0
  28. package/src/components/webmeter/DrillData/LostContactAnalysisList.vue +27 -1
  29. package/src/components/webmeter/DrillData/UserLostContactAnalysis.vue +27 -1
  30. package/src/components/webmeter/gasAnalysis/WebmeterSettlementAnalysis.vue +25 -1
  31. package/src/components/webmeter/instruction/NewQueryInstruct.vue +33 -1
  32. package/src/components/webmeter/newwebmeter/NewException/MeterExceptionList.vue +31 -3
  33. package/src/components/webmeter/newwebmeter/WebhandMonthGas.vue +6 -0
  34. package/src/components/webmeter/recharge/RechargeList.vue +26 -2
  35. package/src/components/webmeter/report/ReportList.vue +26 -2
  36. package/src/components/webmeter/reportdata/ReportDataQuery.vue +15 -3
  37. package/src/filiale/jingyang/ChargeQuery.vue +156 -127
  38. package/src/filiale/kelai/AreaChargeQuery.vue +4 -0
  39. package/src/filiale/kelai/GasStatistics.vue +29 -4
  40. package/src/filiale/qingtongxia/ChargeQuery.vue +11 -1
  41. package/src/filiale/qingtongxia/config/exportConfig.js +474 -474
  42. package/src/filiale/taizhoukesi/NewGasStatistics.vue +16 -13
  43. package/src/filiale/xinjiangdexin/ChargeQuery.vue +1435 -0
  44. package/src/filiale/xinjiangdexin/config/exportConfig.js +2764 -0
  45. package/src/filiale/yuncheng/DeviceQuery.vue +602 -0
  46. package/src/filiale/yuncheng/sale.js +3 -0
@@ -47,6 +47,7 @@
47
47
  <button class="button_clear button_spacing" @click="$parent.$parent.clearmsg">清空</button>
48
48
  <export-excel :data="$parent.$parent.getCondition" class="button_export button_spacing"
49
49
  :field="$parent.$parent.getfield"
50
+ :header="$parent.$parent.other"
50
51
  sqlurl="api/af-revenue/logic/openapi/exportfile" sql-name="getExceptionList" template-name='异常查询'
51
52
  :choose-col="true"></export-excel>
52
53
  <!--<button class="button_export button_spacing" style="width: max-content" @click="$parent.$parent.showTotalForm()">显示汇总</button>-->
@@ -332,6 +333,7 @@
332
333
  let readySomething = async function (self) {
333
334
  await self.$MagLoadParams.loadParam()
334
335
  self.initParams()
336
+ self.sumsmodel = self.$refs.paged.$refs.grid.model.sums;
335
337
  }
336
338
  export default {
337
339
  title: '异常查看',
@@ -344,6 +346,8 @@
344
346
  startDate: '',
345
347
  endDate: '',
346
348
  meterbrands: [],
349
+ other: [],
350
+ sumsmodel: {},
347
351
  f_error_type:'',
348
352
  groupname: ['year'],
349
353
  getgroupname: [
@@ -504,7 +508,23 @@
504
508
  showTotalForm() {
505
509
  this.echarts = false
506
510
  this.isActiveTotalForm = true
507
- }
511
+ },
512
+ getotherfooter() {
513
+ this.other = [];
514
+
515
+ let firstLine = [`导出时间: ${this.$login.toStandardTimeString()}`];
516
+
517
+
518
+ let secondLine = [
519
+ `开始时间(上报区间): ${this.$refs.paged.$refs.cri.model.startDate}`,
520
+ `结束时间: ${this.$refs.paged.$refs.cri.model.endDate}`
521
+ ];
522
+
523
+ this.other.push(firstLine);
524
+ this.other.push(secondLine);
525
+
526
+ console.log('Header Data:', this.other);
527
+ },
508
528
  },
509
529
  watch: {
510
530
  'data'(val) {
@@ -513,8 +533,16 @@
513
533
  } else {
514
534
  this.reportStr = null
515
535
  }
516
- }
517
- },
536
+ },
537
+ sumsmodel:{
538
+ handler: function(val) {
539
+ this.getotherfooter();
540
+ },
541
+ deep: true
542
+ },
543
+ }, mounted() {
544
+ this.getotherfooter();
545
+ },
518
546
  computed: {
519
547
  getCondition() {
520
548
  let condition=this.$refs.paged.$refs.cri.condition + this.orgCondtionStr
@@ -547,6 +547,10 @@ export default {
547
547
  let exportdata = this.getCondition;
548
548
  let otherInData=[];
549
549
  otherInData.push(`导出时间: ${this.$login.toStandardTimeString()}`);
550
+ let secondLine = [
551
+ `开始时间(抄表日期): ${this.$refs.paged.$refs.cri.model.handStartDate}`,
552
+ `结束时间: ${this.$refs.paged.$refs.cri.model.handEndDate}`
553
+ ];
550
554
  let footerData=[],exportfield=this.getfield;
551
555
  footerData.push("合计");
552
556
  let self = this;
@@ -555,6 +559,8 @@ export default {
555
559
  }
556
560
  this.footer.push(footerData);
557
561
  this.other.push(otherInData);
562
+ this.other.push(secondLine);
563
+
558
564
  },
559
565
  // async getaddress(){
560
566
  // let HttpReset = new HttpResetClass()
@@ -46,6 +46,7 @@
46
46
  <button class="button_clear button_spacing" @click="$parent.$parent.clearmsg">清空</button>
47
47
  <export-excel :data="$parent.$parent.getCondition" class="button_export button_spacing"
48
48
  :field="$parent.$parent.getfield"
49
+ :header="$parent.$parent.other"
49
50
  sqlurl="api/af-revenue/logic/openapi/exportfile" sql-name="rechargeInstruct" template-name='充值指令查询'
50
51
  :choose-col="true"></export-excel>
51
52
  <div style="float: right" class="button_spacing" :class="{'button_shrink_top':$parent.$parent.criteriaShow,'button_shrink_bottom':!$parent.$parent.criteriaShow}" @click="$parent.$parent.hidden()"></div>
@@ -181,7 +182,7 @@
181
182
  let readySomething = async function (self) {
182
183
  await self.$MagLoadParams.loadParam()
183
184
  self.initParams()
184
- // self.sumsmodel = self.$refs.paged.$refs.grid.model.sums;
185
+ self.sumsmodel = self.$refs.paged.$refs.grid.model.sums;
185
186
  }
186
187
  export default {
187
188
  title: '充值指令查询',
@@ -198,6 +199,7 @@
198
199
  gasproperties:[],
199
200
  condition:'',
200
201
  rowdata:{},
202
+ other: [],
201
203
  sumsmodel: {},
202
204
  orgid:[this.$login.f.orgid],
203
205
  criteriaShow:false,
@@ -215,6 +217,22 @@
215
217
  this.$refs.paged.$refs.criteria.model.f_end_date = Util.addDate(new Date(),-1).substring(0,10) + ' 23:59:59'
216
218
  },
217
219
  methods: {
220
+ getotherfooter() {
221
+ this.other = [];
222
+
223
+ let firstLine = [`导出时间: ${this.$login.toStandardTimeString()}`];
224
+
225
+
226
+ let secondLine = [
227
+ `开始时间(充值): ${this.$refs.paged.$refs.criteria.model.f_start_date}`,
228
+ `结束时间(充值): ${this.$refs.paged.$refs.criteria.model.f_end_date}`
229
+ ];
230
+
231
+ this.other.push(firstLine);
232
+ this.other.push(secondLine);
233
+
234
+ console.log('Header Data:', this.other);
235
+ },
218
236
  initParams() {
219
237
  // 初始化气表品牌
220
238
  let brandArr = []
@@ -308,7 +326,13 @@
308
326
  this.f_filialeid = res[1]
309
327
  // this.updateParams()
310
328
  }
311
- }
329
+ },
330
+ sumsmodel:{
331
+ handler: function(val) {
332
+ this.getotherfooter();
333
+ },
334
+ deep: true
335
+ },
312
336
  },
313
337
  computed: {
314
338
  getfield () {
@@ -46,6 +46,7 @@
46
46
  <button class="button_clear button_spacing" @click="$parent.$parent.clearmsg">清空</button>
47
47
  <export-excel :data="$parent.$parent.getCondition" class="button_export button_spacing"
48
48
  :field="$parent.$parent.getfield"
49
+ :header="$parent.$parent.other"
49
50
  sqlurl="api/af-revenue/logic/openapi/exportfile" sql-name="manage_getReportList" template-name='上报查询'
50
51
  :choose-col="true"></export-excel>
51
52
  <div style="float: right" class="button_spacing" :class="{'button_shrink_top':$parent.$parent.criteriaShow,'button_shrink_bottom':!$parent.$parent.criteriaShow}" @click="$parent.$parent.hidden()"></div>
@@ -234,7 +235,7 @@
234
235
  let readySomething = async function (self) {
235
236
  await self.$MagLoadParams.loadParam()
236
237
  self.initParams()
237
- // self.sumsmodel = self.$refs.paged.$refs.grid.model.sums;
238
+ self.sumsmodel = self.$refs.paged.$refs.grid.model.sums;
238
239
  }
239
240
  export default {
240
241
  title: '上报查询',
@@ -251,6 +252,7 @@
251
252
  gasproperties:[],
252
253
  condition:'',
253
254
  rowdata:{},
255
+ other: [],
254
256
  sumsmodel: {},
255
257
  orgid:[this.$login.f.orgid],
256
258
  criteriaShow:false,
@@ -269,6 +271,22 @@
269
271
  this.$refs.paged.$refs.criteria.model.f_end_date = Util.addDate(new Date(),-1).substring(0,10) + ' 23:59:59'
270
272
  },
271
273
  methods: {
274
+ getotherfooter() {
275
+ this.other = [];
276
+
277
+ let firstLine = [`导出时间: ${this.$login.toStandardTimeString()}`];
278
+
279
+
280
+ let secondLine = [
281
+ `开始时间: ${this.$refs.paged.$refs.criteria.model.f_start_date}`,
282
+ `结束时间: ${this.$refs.paged.$refs.criteria.model.f_end_date}`
283
+ ];
284
+
285
+ this.other.push(firstLine);
286
+ this.other.push(secondLine);
287
+
288
+ console.log('Header Data:', this.other);
289
+ },
272
290
  initParams() {
273
291
  // 初始化气表品牌
274
292
  let brandArr = []
@@ -351,7 +369,13 @@
351
369
  this.f_filialeid = res[1]
352
370
  // this.updateParams()
353
371
  }
354
- }
372
+ },
373
+ sumsmodel:{
374
+ handler: function(val) {
375
+ this.getotherfooter();
376
+ },
377
+ deep: true
378
+ },
355
379
  },
356
380
  computed: {
357
381
  getPricenames() {
@@ -165,12 +165,14 @@
165
165
  await self.$MagLoadParams.loadParam()
166
166
  self.initParams()
167
167
  // self.defaultfield = [...self.defaultfield, ...self.config.defaultPrint]
168
+ self.sumsmodel = self.$refs.paged.$refs.grid.model.sums;
168
169
  }
169
170
  export default {
170
171
  title: '上报数据查询',
171
172
  data() {
172
173
  return {
173
174
  other:[],
175
+ sumsmodel: {},
174
176
  footer:[],
175
177
  model: new PagedList('api/af-revenue/sql/manage_getReportDataQuery', 20, {}),
176
178
  criteriaShow: false,
@@ -288,19 +290,29 @@
288
290
  // getRes(obj) {
289
291
  // this.orgCondtionStr = obj
290
292
  // }
291
- getotherfooter () {
292
- // this.$refs.paged.$refs.cri.$refs.exports.otherData = [];
293
- // this.$refs.paged.$refs.cri.$refs.exports.footerData = [];
293
+ getotherfooter() {
294
294
  this.other = [];
295
295
  this.footer = [];
296
296
  let otherInData = [];
297
+ let secondLine = [
298
+ `开始时间: ${this.$refs.paged.$refs.cri.model.startDate}`,
299
+ `结束时间: ${this.$refs.paged.$refs.cri.model.startDate}`
300
+ ];
297
301
  otherInData.push(`导出时间: ${this.$login.toStandardTimeString()}`);
298
302
  let footerData = []
303
+
299
304
  this.footer.push(footerData);
300
305
  this.other.push(otherInData);
306
+ this.other.push(secondLine);
301
307
  }
302
308
  },
303
309
  watch: {
310
+ sumsmodel:{
311
+ handler: function(val) {
312
+ this.getotherfooter();
313
+ },
314
+ deep: true
315
+ },
304
316
  },
305
317
  computed: {
306
318
  metertypes() {