manage-client 3.3.58 → 3.3.60

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 (43) hide show
  1. package/package.json +1 -1
  2. package/src/components/webmeter/report/ReportList.vue +2 -2
  3. package/src/components/webmeter/reportdata/ReportDataQuery.vue +0 -6
  4. package/src/filiale/WEINAN/CancellationQuery.vue +74 -0
  5. package/src/filiale/WEINAN/ChargeQuery.vue +58 -1
  6. package/src/filiale/WEINAN/DeviceQuery.vue +63 -0
  7. package/src/filiale/WEINAN/DisableQuery.vue +74 -0
  8. package/src/filiale/WEINAN/EnableQuery.vue +74 -0
  9. package/src/filiale/WEINAN/FillGasQuery.vue +74 -0
  10. package/src/filiale/WEINAN/InspectListUser.vue +35 -0
  11. package/src/filiale/WEINAN/MergeFileQuery.vue +77 -1
  12. package/src/filiale/WEINAN/MeterQuery.vue +58 -0
  13. package/src/filiale/WEINAN/NewAccountQuery.vue +58 -0
  14. package/src/filiale/WEINAN/OtherChargeQuery.vue +58 -0
  15. package/src/filiale/WEINAN/RecordInfoQuery.vue +58 -0
  16. package/src/filiale/WEINAN/UserGasAll.vue +63 -0
  17. package/src/filiale/WEINAN/UserGasList.vue +59 -0
  18. package/src/filiale/WEINAN/UserLostContactAnalysis.vue +63 -0
  19. package/src/filiale/WEINAN/UserQuery.vue +63 -0
  20. package/src/filiale/WEINAN/businessquery/FillCardQuery.vue +643 -0
  21. package/src/filiale/WEINAN/businessquery/HandplanQuery.vue +1428 -0
  22. package/src/filiale/WEINAN/businessquery/MoveMeterQuery.vue +477 -0
  23. package/src/filiale/WEINAN/businessquery/ReverseQuery.vue +512 -0
  24. package/src/filiale/WEINAN/businessquery/TransferQuery.vue +553 -0
  25. package/src/filiale/WEINAN/businessquery/UserInsured.vue +483 -0
  26. package/src/filiale/WEINAN/businessquery/priceadjustQuery.vue +535 -0
  27. package/src/filiale/WEINAN/config/exportConfig.js +41 -38
  28. package/src/filiale/WEINAN/filesquery/ChangeUserQuery.vue +468 -0
  29. package/src/filiale/WEINAN/filesquery/FmyGasDeviceQuery.vue +911 -0
  30. package/src/filiale/WEINAN/filesquery/GasDeviceQuery.vue +1021 -0
  31. package/src/filiale/WEINAN/filesquery/PriceChangeQuery.vue +468 -0
  32. package/src/filiale/WEINAN/filesquery/UserDeviceQuery.vue +505 -0
  33. package/src/filiale/WEINAN/manage/ChangeMeterQuery.vue +63 -0
  34. package/src/filiale/WEINAN/sale.js +23 -2
  35. package/src/filiale/WEINAN/webmeter/LostContactAnalysisList.vue +692 -0
  36. package/src/filiale/WEINAN/webmeter/NewQueryInstruct.vue +564 -0
  37. package/src/filiale/WEINAN/webmeter/ReportList.vue +483 -0
  38. package/src/filiale/WEINAN/webmeter/TotalExceptionByMeter.vue +665 -0
  39. package/src/filiale/WEINAN/webmeter/UserInstructEchartsList.vue +242 -0
  40. package/src/filiale/WEINAN/webmeter/UserInstructList.vue +390 -0
  41. package/src/filiale/WEINAN/webmeterManage.js +13 -0
  42. package/src/filiale/lixianV3/BusinessManage.vue +3 -0
  43. package/src/filiale/shanxian/UserLostContactAnalysis.vue +35 -3
@@ -66,6 +66,7 @@
66
66
  v-model="model.f_user_type"
67
67
  placeholder='客户类型'
68
68
  :value.sync="model.f_user_type"
69
+ @change="$parent.$parent.userTypeChange()"
69
70
  :options='$parent.$parent.usertypes'
70
71
  condition="f_user_type = '{}'"
71
72
  close-on-select>
@@ -146,6 +147,41 @@
146
147
  close-on-select>
147
148
  </v-select>
148
149
  </div>
150
+ <div class="col-sm-2 form-group">
151
+ <label for="f_user_usetype" class="font_normal_body ">用气类型</label>
152
+ <v-select :value.sync="model.f_user_usetype" :search="false"
153
+ @change="$parent.$parent.userUseTypeChange()"
154
+ v-model="model.f_user_usetype"
155
+ :options='$parent.$parent.userusetypes'
156
+ condition="f_user_usetype = '{}'"
157
+ placeholder='用气类型'
158
+ value-single="true"
159
+ close-on-select>
160
+ </v-select>
161
+ </div>
162
+ <div class="col-sm-2 form-group">
163
+ <label for="f_use_institution" class="font_normal_body">用气机构</label>
164
+ <v-select :value.sync="model.f_use_institution" :search="false"
165
+ @change="$parent.$parent.userUseInstitutionChange()"
166
+ v-model="model.f_use_institution"
167
+ :options='$parent.$parent.useinstitutions'
168
+ condition="f_use_institution = '{}'"
169
+ placeholder='用气机构'
170
+ value-single="true"
171
+ close-on-select>
172
+ </v-select>
173
+ </div>
174
+ <div class="col-sm-2 form-group">
175
+ <label for="f_user_usenature" class="font_normal_body ">使用性质</label>
176
+ <v-select :value.sync="model.f_user_usenature" :search="false"
177
+ v-model="model.f_user_usenature"
178
+ :options='$parent.$parent.userusenatures'
179
+ condition="f_user_usenature = '{}'"
180
+ placeholder='使用性质'
181
+ value-single="true"
182
+ close-on-select>
183
+ </v-select>
184
+ </div>
149
185
  </div>
150
186
  </div>
151
187
  </criteria>
@@ -336,6 +372,9 @@
336
372
  f_comments: ''
337
373
  },
338
374
  filename: '',
375
+ userusetypes: [],
376
+ useinstitutions: [],
377
+ userusenatures: [],
339
378
  WarningType: [
340
379
  {label: '全部', value: ''}
341
380
  ],
@@ -364,6 +403,30 @@
364
403
  },
365
404
 
366
405
  methods: {
406
+ userUseInstitutionChange () {
407
+ this.userusenatures = []
408
+ this.$refs.paged.$refs.cri.model.f_user_usenature = ''
409
+ if (this.$refs.paged.$refs.cri.model.f_use_institution) {
410
+ let str = this.$refs.paged.$refs.cri.model.f_use_institution + '使用性质'
411
+ this.userusenatures = this.$appdata.getParam(str)
412
+ }
413
+ },
414
+ userUseTypeChange () {
415
+ this.useinstitutions = []
416
+ this.$refs.paged.$refs.cri.model.f_use_institution = ''
417
+ if (this.$refs.paged.$refs.cri.model.f_user_usetype) {
418
+ let str = this.$refs.paged.$refs.cri.model.f_user_usetype + '机构'
419
+ this.useinstitutions = this.$appdata.getParam(str)
420
+ }
421
+ },
422
+ userTypeChange () {
423
+ this.userusetypes = []
424
+ if(this.$refs.paged.$refs.cri.model !==null) {
425
+ this.$refs.paged.$refs.cri.model.f_use_institution = ''
426
+ let str = this.$refs.paged.$refs.cri.model.f_user_type + '用气类型'
427
+ this.userusetypes = this.$appdata.getParam(str)
428
+ }
429
+ },
367
430
  getMeterType() {
368
431
  this.Warningstyle = [{label: '全部', value: ''}]
369
432
  this.styles = false
@@ -65,6 +65,7 @@
65
65
  <div class="col-sm-2 form-group">
66
66
  <label class="font_normal_body">客户类型</label>
67
67
  <v-select :value.sync="model.f_user_type"
68
+ @change="$parent.$parent.userTypeChange()"
68
69
  v-model="model.f_user_type" condition="f_user_type = '{}'"
69
70
  :options='$parent.$parent.userTypes' placeholder='请选择'
70
71
  close-on-select></v-select>
@@ -278,6 +279,41 @@
278
279
  :options='$parent.$parent.hairpin' placeholder='请选择'
279
280
  close-on-select></v-select>
280
281
  </div>
282
+ <div class="col-sm-2 form-group">
283
+ <label for="f_user_usetype" class="font_normal_body ">用气类型</label>
284
+ <v-select :value.sync="model.f_user_usetype" :search="false"
285
+ @change="$parent.$parent.userUseTypeChange()"
286
+ v-model="model.f_user_usetype"
287
+ :options='$parent.$parent.userusetypes'
288
+ condition="f_user_usetype = '{}'"
289
+ placeholder='用气类型'
290
+ value-single="true"
291
+ close-on-select>
292
+ </v-select>
293
+ </div>
294
+ <div class="col-sm-2 form-group">
295
+ <label for="f_use_institution" class="font_normal_body">用气机构</label>
296
+ <v-select :value.sync="model.f_use_institution" :search="false"
297
+ @change="$parent.$parent.userUseInstitutionChange()"
298
+ v-model="model.f_use_institution"
299
+ :options='$parent.$parent.useinstitutions'
300
+ condition="f_use_institution = '{}'"
301
+ placeholder='用气机构'
302
+ value-single="true"
303
+ close-on-select>
304
+ </v-select>
305
+ </div>
306
+ <div class="col-sm-2 form-group">
307
+ <label for="f_user_usenature" class="font_normal_body ">使用性质</label>
308
+ <v-select :value.sync="model.f_user_usenature" :search="false"
309
+ v-model="model.f_user_usenature"
310
+ :options='$parent.$parent.userusenatures'
311
+ condition="f_user_usenature = '{}'"
312
+ placeholder='使用性质'
313
+ value-single="true"
314
+ close-on-select>
315
+ </v-select>
316
+ </div>
281
317
 
282
318
  </div>
283
319
  </div>
@@ -616,6 +652,9 @@
616
652
  bookSlice:[{label: '全部',value: ''}],
617
653
  inputtores:[{label: '全部',value: ''}], //抄表员
618
654
  allorgid:[],
655
+ userusetypes: [],
656
+ useinstitutions: [],
657
+ userusenatures: [],
619
658
  f_filialeid: this.$login.f.f_orgid,
620
659
  dypayment:[{label:"全部",value:""},{label:"银行代扣",value:"银行代扣",},{label:"现金缴费",value:"现金缴费",}],
621
660
  }
@@ -631,6 +670,30 @@
631
670
  this.initAreas(this.$login.f.orgid)
632
671
  },
633
672
  methods: {
673
+ userUseInstitutionChange () {
674
+ this.userusenatures = []
675
+ this.$refs.paged.$refs.cri.model.f_user_usenature = ''
676
+ if (this.$refs.paged.$refs.cri.model.f_use_institution) {
677
+ let str = this.$refs.paged.$refs.cri.model.f_use_institution + '使用性质'
678
+ this.userusenatures = this.$appdata.getParam(str)
679
+ }
680
+ },
681
+ userUseTypeChange () {
682
+ this.useinstitutions = []
683
+ this.$refs.paged.$refs.cri.model.f_use_institution = ''
684
+ if (this.$refs.paged.$refs.cri.model.f_user_usetype) {
685
+ let str = this.$refs.paged.$refs.cri.model.f_user_usetype + '机构'
686
+ this.useinstitutions = this.$appdata.getParam(str)
687
+ }
688
+ },
689
+ userTypeChange () {
690
+ this.userusetypes = []
691
+ if(this.$refs.paged.$refs.cri.model !==null) {
692
+ this.$refs.paged.$refs.cri.model.f_use_institution = ''
693
+ let str = this.$refs.paged.$refs.cri.model.f_user_type[0] + '用气类型'
694
+ this.userusetypes = this.$appdata.getParam(str)
695
+ }
696
+ },
634
697
  async getinputtores () {
635
698
  // 获取抄表员
636
699
  let rs = []