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
@@ -49,6 +49,50 @@
49
49
  condition=" f_user_name = '{}'" placeholder='旧客户名称'
50
50
  :size="model.f_user_name ? model.f_user_name.length * 2 : 1">
51
51
  </div>
52
+ <div class="col-sm-2 form-group">
53
+ <label class="font_normal_body">用户类型</label>
54
+ <v-select :value.sync="model.f_user_type"
55
+ v-model="model.f_user_type"
56
+ @change="$parent.$parent.userTypeChange()"
57
+ :options='$parent.$parent.userTypes' placeholder='请选择'
58
+ condition="f_user_type = '{}'"
59
+ close-on-select></v-select>
60
+ </div>
61
+ <div class="col-sm-2 form-group">
62
+ <label for="f_user_usetype" class="font_normal_body ">用气类型</label>
63
+ <v-select :value.sync="model.f_user_usetype" :search="false"
64
+ @change="$parent.$parent.userUseTypeChange()"
65
+ v-model="model.f_user_usetype"
66
+ :options='$parent.$parent.userusetypes'
67
+ condition="f_user_usetype = '{}'"
68
+ placeholder='用气类型'
69
+ value-single="true"
70
+ close-on-select>
71
+ </v-select>
72
+ </div>
73
+ <div class="col-sm-2 form-group">
74
+ <label for="f_use_institution" class="font_normal_body">用气机构</label>
75
+ <v-select :value.sync="model.f_use_institution" :search="false"
76
+ @change="$parent.$parent.userUseInstitutionChange()"
77
+ v-model="model.f_use_institution"
78
+ :options='$parent.$parent.useinstitutions'
79
+ condition="f_use_institution = '{}'"
80
+ placeholder='用气机构'
81
+ value-single="true"
82
+ close-on-select>
83
+ </v-select>
84
+ </div>
85
+ <div class="col-sm-2 form-group">
86
+ <label for="f_user_usenature" class="font_normal_body ">使用性质</label>
87
+ <v-select :value.sync="model.f_user_usenature" :search="false"
88
+ v-model="model.f_user_usenature"
89
+ :options='$parent.$parent.userusenatures'
90
+ condition="f_user_usenature = '{}'"
91
+ placeholder='使用性质'
92
+ value-single="true"
93
+ close-on-select>
94
+ </v-select>
95
+ </div>
52
96
  <div class="span" style="float:right;">
53
97
  <button class="button_search button_spacing" @click="search()">查询</button>
54
98
  <button class="button_clear button_spacing" @click="$parent.$parent.clear()">清空</button>
@@ -151,6 +195,9 @@
151
195
  data() {
152
196
  return {
153
197
  model: new PagedList('rs/sql/mergeFileQuery', 20),
198
+ userusetypes: [],
199
+ useinstitutions: [],
200
+ userusenatures: []
154
201
  }
155
202
  },
156
203
  ready() {
@@ -161,6 +208,30 @@
161
208
  })
162
209
  },
163
210
  methods: {
211
+ userUseInstitutionChange () {
212
+ this.userusenatures = []
213
+ this.$refs.paged.$refs.cri.model.f_user_usenature = ''
214
+ if (this.$refs.paged.$refs.cri.model.f_use_institution) {
215
+ let str = this.$refs.paged.$refs.cri.model.f_use_institution + '使用性质'
216
+ this.userusenatures = this.$appdata.getParam(str)
217
+ }
218
+ },
219
+ userUseTypeChange () {
220
+ this.useinstitutions = []
221
+ this.$refs.paged.$refs.cri.model.f_use_institution = ''
222
+ if (this.$refs.paged.$refs.cri.model.f_user_usetype) {
223
+ let str = this.$refs.paged.$refs.cri.model.f_user_usetype + '机构'
224
+ this.useinstitutions = this.$appdata.getParam(str)
225
+ }
226
+ },
227
+ userTypeChange () {
228
+ this.userusetypes = []
229
+ if(this.$refs.paged.$refs.cri.model !==null) {
230
+ this.$refs.paged.$refs.cri.model.f_use_institution = ''
231
+ let str = this.$refs.paged.$refs.cri.model.f_user_type[0] + '用气类型'
232
+ this.userusetypes = this.$appdata.getParam(str)
233
+ }
234
+ },
164
235
  search() {
165
236
  this.$refs.paged.$refs.cri.search()
166
237
  },
@@ -180,6 +251,11 @@
180
251
  hidden() {
181
252
  this.criteriaShow = !this.criteriaShow
182
253
  }
183
- }
254
+ },
255
+ computed: {
256
+ userTypes() {
257
+ return [{label: '全部', value: ''}, ...this.$appdata.getParam('用户类型')]
258
+ },
259
+ }
184
260
  }
185
261
  </script>
@@ -254,6 +254,41 @@
254
254
  <!-- <input type="number" class="input_search" style="width: 26%;" condition="f_meter_flow >= '{}'" placeholder="表流量" v-model="model.minSize">&ensp;-&ensp;-->
255
255
  <!-- <input type="number" class="input_search" style="width: 26%;" condition="f_meter_flow <= '{}'" placeholder="表流量" v-model="model.maxSize">-->
256
256
  <!-- </div>-->
257
+ <div class="col-sm-2 form-group">
258
+ <label for="f_user_usetype" class="font_normal_body ">用气类型</label>
259
+ <v-select :value.sync="model.f_user_usetype" :search="false"
260
+ @change="$parent.$parent.userUseTypeChange()"
261
+ v-model="model.f_user_usetype"
262
+ :options='$parent.$parent.userusetypes'
263
+ condition="f_user_usetype = '{}'"
264
+ placeholder='用气类型'
265
+ value-single="true"
266
+ close-on-select>
267
+ </v-select>
268
+ </div>
269
+ <div class="col-sm-2 form-group">
270
+ <label for="f_use_institution" class="font_normal_body">用气机构</label>
271
+ <v-select :value.sync="model.f_use_institution" :search="false"
272
+ @change="$parent.$parent.userUseInstitutionChange()"
273
+ v-model="model.f_use_institution"
274
+ :options='$parent.$parent.useinstitutions'
275
+ condition="f_use_institution = '{}'"
276
+ placeholder='用气机构'
277
+ value-single="true"
278
+ close-on-select>
279
+ </v-select>
280
+ </div>
281
+ <div class="col-sm-2 form-group">
282
+ <label for="f_user_usenature" class="font_normal_body ">使用性质</label>
283
+ <v-select :value.sync="model.f_user_usenature" :search="false"
284
+ v-model="model.f_user_usenature"
285
+ :options='$parent.$parent.userusenatures'
286
+ condition="f_user_usenature = '{}'"
287
+ placeholder='使用性质'
288
+ value-single="true"
289
+ close-on-select>
290
+ </v-select>
291
+ </div>
257
292
 
258
293
  </div>
259
294
  </div>
@@ -563,6 +598,9 @@
563
598
  allorgid:[],
564
599
  tempfalg :false,
565
600
  lastorgstr:'',
601
+ userusetypes: [],
602
+ useinstitutions: [],
603
+ userusenatures: [],
566
604
  // issecond: [{label:'是',value:" = '二次挂表'"},{label:'否',value:" <> '二次挂表'"}],
567
605
  usetype:this.$appdata.getParam('使用类型')
568
606
  }
@@ -576,6 +614,22 @@
576
614
  })
577
615
  },
578
616
  methods: {
617
+ userUseInstitutionChange () {
618
+ this.userusenatures = []
619
+ this.$refs.paged.$refs.cri.model.f_user_usenature = ''
620
+ if (this.$refs.paged.$refs.cri.model.f_use_institution) {
621
+ let str = this.$refs.paged.$refs.cri.model.f_use_institution + '使用性质'
622
+ this.userusenatures = this.$appdata.getParam(str)
623
+ }
624
+ },
625
+ userUseTypeChange () {
626
+ this.useinstitutions = []
627
+ this.$refs.paged.$refs.cri.model.f_use_institution = ''
628
+ if (this.$refs.paged.$refs.cri.model.f_user_usetype) {
629
+ let str = this.$refs.paged.$refs.cri.model.f_user_usetype + '机构'
630
+ this.useinstitutions = this.$appdata.getParam(str)
631
+ }
632
+ },
579
633
  ReadIDCard(){
580
634
  this.$refs.highcard.sendMsg(this.$refs.highcard.CLT_MSG.READ_IDCARD, (msg) => {
581
635
  console.log('======',msg)
@@ -712,9 +766,13 @@
712
766
  },
713
767
  userTypeChange () {
714
768
  this.gasproperties=[]
769
+ this.userusetypes = []
715
770
  if(this.$refs.paged.$refs.cri.model !==null) {
716
771
  this.$refs.paged.$refs.cri.model.f_gasproperties=''
717
772
  this.gasproperties = this.$appdata.getParam(this.$refs.paged.$refs.cri.model.f_user_type[0])
773
+ this.$refs.paged.$refs.cri.model.f_use_institution = ''
774
+ let str = this.$refs.paged.$refs.cri.model.f_user_type[0] + '用气类型'
775
+ this.userusetypes = this.$appdata.getParam(str)
718
776
  }
719
777
  else{
720
778
  this.gasproperties =[{label: '全部', value: ''}]
@@ -96,6 +96,41 @@
96
96
  condition="f_residential_area like '%{}%'" placeholder="小区"/>
97
97
  </div>
98
98
  <res-select-group :initres="$parent.$parent.initres" @re-res="$parent.$parent.getRes" v-ref:sel></res-select-group>
99
+ <div class="col-sm-2 form-group">
100
+ <label for="f_user_usetype" class="font_normal_body ">用气类型</label>
101
+ <v-select :value.sync="model.f_user_usetype" :search="false"
102
+ @change="$parent.$parent.userUseTypeChange()"
103
+ v-model="model.f_user_usetype"
104
+ :options='$parent.$parent.userusetypes'
105
+ condition="f_user_usetype = '{}'"
106
+ placeholder='用气类型'
107
+ value-single="true"
108
+ close-on-select>
109
+ </v-select>
110
+ </div>
111
+ <div class="col-sm-2 form-group">
112
+ <label for="f_use_institution" class="font_normal_body">用气机构</label>
113
+ <v-select :value.sync="model.f_use_institution" :search="false"
114
+ @change="$parent.$parent.userUseInstitutionChange()"
115
+ v-model="model.f_use_institution"
116
+ :options='$parent.$parent.useinstitutions'
117
+ condition="f_use_institution = '{}'"
118
+ placeholder='用气机构'
119
+ value-single="true"
120
+ close-on-select>
121
+ </v-select>
122
+ </div>
123
+ <div class="col-sm-2 form-group">
124
+ <label for="f_user_usenature" class="font_normal_body ">使用性质</label>
125
+ <v-select :value.sync="model.f_user_usenature" :search="false"
126
+ v-model="model.f_user_usenature"
127
+ :options='$parent.$parent.userusenatures'
128
+ condition="f_user_usenature = '{}'"
129
+ placeholder='使用性质'
130
+ value-single="true"
131
+ close-on-select>
132
+ </v-select>
133
+ </div>
99
134
  </div>
100
135
  </div>
101
136
  </criteria>
@@ -234,6 +269,9 @@
234
269
  rowdata:{},
235
270
  //合计数据
236
271
  sumsmodel: {},
272
+ userusetypes: [],
273
+ useinstitutions: [],
274
+ userusenatures: [],
237
275
  gasproperties:[],
238
276
  }
239
277
  },
@@ -245,6 +283,22 @@
245
283
  })
246
284
  },
247
285
  methods: {
286
+ userUseInstitutionChange () {
287
+ this.userusenatures = []
288
+ this.$refs.paged.$refs.cri.model.f_user_usenature = ''
289
+ if (this.$refs.paged.$refs.cri.model.f_use_institution) {
290
+ let str = this.$refs.paged.$refs.cri.model.f_use_institution + '使用性质'
291
+ this.userusenatures = this.$appdata.getParam(str)
292
+ }
293
+ },
294
+ userUseTypeChange () {
295
+ this.useinstitutions = []
296
+ this.$refs.paged.$refs.cri.model.f_use_institution = ''
297
+ if (this.$refs.paged.$refs.cri.model.f_user_usetype) {
298
+ let str = this.$refs.paged.$refs.cri.model.f_user_usetype + '机构'
299
+ this.useinstitutions = this.$appdata.getParam(str)
300
+ }
301
+ },
248
302
  cancel() {
249
303
  this.showinfo = false
250
304
  },
@@ -354,9 +408,13 @@
354
408
  },
355
409
  userTypeChange () {
356
410
  this.gasproperties=[]
411
+ this.userusetypes = []
357
412
  if(this.$refs.paged.$refs.cri.model !==null) {
358
413
  this.$refs.paged.$refs.cri.model.f_gasproperties=''
359
414
  this.gasproperties = this.$appdata.getParam(this.$refs.paged.$refs.cri.model.f_user_type[0])
415
+ this.$refs.paged.$refs.cri.model.f_use_institution = ''
416
+ let str = this.$refs.paged.$refs.cri.model.f_user_type[0] + '用气类型'
417
+ this.userusetypes = this.$appdata.getParam(str)
360
418
  }
361
419
  else{
362
420
  this.gasproperties =[{label: '全部', value: ''}]
@@ -144,6 +144,41 @@
144
144
  close-on-select clear-button>
145
145
  </v-select>
146
146
  </div>
147
+ <div class="col-sm-2 form-group">
148
+ <label for="f_user_usetype" class="font_normal_body ">用气类型</label>
149
+ <v-select :value.sync="model.f_user_usetype" :search="false"
150
+ @change="$parent.$parent.userUseTypeChange()"
151
+ v-model="model.f_user_usetype"
152
+ :options='$parent.$parent.userusetypes'
153
+ condition="f_user_usetype = '{}'"
154
+ placeholder='用气类型'
155
+ value-single="true"
156
+ close-on-select>
157
+ </v-select>
158
+ </div>
159
+ <div class="col-sm-2 form-group">
160
+ <label for="f_use_institution" class="font_normal_body">用气机构</label>
161
+ <v-select :value.sync="model.f_use_institution" :search="false"
162
+ @change="$parent.$parent.userUseInstitutionChange()"
163
+ v-model="model.f_use_institution"
164
+ :options='$parent.$parent.useinstitutions'
165
+ condition="f_use_institution = '{}'"
166
+ placeholder='用气机构'
167
+ value-single="true"
168
+ close-on-select>
169
+ </v-select>
170
+ </div>
171
+ <div class="col-sm-2 form-group">
172
+ <label for="f_user_usenature" class="font_normal_body ">使用性质</label>
173
+ <v-select :value.sync="model.f_user_usenature" :search="false"
174
+ v-model="model.f_user_usenature"
175
+ :options='$parent.$parent.userusenatures'
176
+ condition="f_user_usenature = '{}'"
177
+ placeholder='使用性质'
178
+ value-single="true"
179
+ close-on-select>
180
+ </v-select>
181
+ </div>
147
182
  </div>
148
183
  </div>
149
184
  </criteria>
@@ -339,6 +374,9 @@ export default {
339
374
  gasproperties: [],
340
375
  // 品名规格
341
376
  typeNameList: [],
377
+ userusetypes: [],
378
+ useinstitutions: [],
379
+ userusenatures: [],
342
380
  // 型号
343
381
  typenumberList: [],
344
382
  showCom:['company','department','operator']
@@ -352,6 +390,22 @@ export default {
352
390
  })
353
391
  },
354
392
  methods: {
393
+ userUseInstitutionChange () {
394
+ this.userusenatures = []
395
+ this.$refs.paged.$refs.cri.model.f_user_usenature = ''
396
+ if (this.$refs.paged.$refs.cri.model.f_use_institution) {
397
+ let str = this.$refs.paged.$refs.cri.model.f_use_institution + '使用性质'
398
+ this.userusenatures = this.$appdata.getParam(str)
399
+ }
400
+ },
401
+ userUseTypeChange () {
402
+ this.useinstitutions = []
403
+ this.$refs.paged.$refs.cri.model.f_use_institution = ''
404
+ if (this.$refs.paged.$refs.cri.model.f_user_usetype) {
405
+ let str = this.$refs.paged.$refs.cri.model.f_user_usetype + '机构'
406
+ this.useinstitutions = this.$appdata.getParam(str)
407
+ }
408
+ },
355
409
  showmsg(obj){
356
410
  this.rowdata=obj
357
411
  this.show=true
@@ -461,9 +515,13 @@ export default {
461
515
  },
462
516
  userTypeChange (f_user_type) {
463
517
  this.gasproperties = []
518
+ this.userusetypes = []
464
519
  if (f_user_type) {
465
520
  this.$refs.paged.$refs.cri.model.f_gasproperties = ''
466
521
  this.gasproperties = this.$appdata.getParam(this.$refs.paged.$refs.cri.model.f_user_type[0])
522
+ this.$refs.paged.$refs.cri.model.f_use_institution = ''
523
+ let str = this.$refs.paged.$refs.cri.model.f_user_type[0] + '用气类型'
524
+ this.userusetypes = this.$appdata.getParam(str)
467
525
  } else {
468
526
  this.gasproperties = [{label: '全部', value: ''}]
469
527
  }
@@ -377,6 +377,41 @@
377
377
  <!-- close-on-select-->
378
378
  <!-- v-el:cc></v-select>-->
379
379
  <!-- </div>-->
380
+ <div class="col-sm-2 form-group">
381
+ <label for="f_user_usetype" class="font_normal_body ">用气类型</label>
382
+ <v-select :value.sync="model.f_user_usetype" :search="false"
383
+ @change="$parent.$parent.userUseTypeChange()"
384
+ v-model="model.f_user_usetype"
385
+ :options='$parent.$parent.userusetypes'
386
+ condition="f_user_usetype = '{}'"
387
+ placeholder='用气类型'
388
+ value-single="true"
389
+ close-on-select>
390
+ </v-select>
391
+ </div>
392
+ <div class="col-sm-2 form-group">
393
+ <label for="f_use_institution" class="font_normal_body">用气机构</label>
394
+ <v-select :value.sync="model.f_use_institution" :search="false"
395
+ @change="$parent.$parent.userUseInstitutionChange()"
396
+ v-model="model.f_use_institution"
397
+ :options='$parent.$parent.useinstitutions'
398
+ condition="f_use_institution = '{}'"
399
+ placeholder='用气机构'
400
+ value-single="true"
401
+ close-on-select>
402
+ </v-select>
403
+ </div>
404
+ <div class="col-sm-2 form-group">
405
+ <label for="f_user_usenature" class="font_normal_body ">使用性质</label>
406
+ <v-select :value.sync="model.f_user_usenature" :search="false"
407
+ v-model="model.f_user_usenature"
408
+ :options='$parent.$parent.userusenatures'
409
+ condition="f_user_usenature = '{}'"
410
+ placeholder='使用性质'
411
+ value-single="true"
412
+ close-on-select>
413
+ </v-select>
414
+ </div>
380
415
  </div>
381
416
  </div>
382
417
  </criteria>
@@ -737,6 +772,9 @@
737
772
  },
738
773
  // 合计数据
739
774
  sumsmodel: {},
775
+ userusetypes: [],
776
+ useinstitutions: [],
777
+ userusenatures: [],
740
778
  //表册片区
741
779
  bookSlice:[{label: '全部',value: ''}],
742
780
  pricenames:[],
@@ -752,6 +790,22 @@
752
790
  })
753
791
  },
754
792
  methods: {
793
+ userUseInstitutionChange () {
794
+ this.userusenatures = []
795
+ this.$refs.paged.$refs.cri.model.f_user_usenature = ''
796
+ if (this.$refs.paged.$refs.cri.model.f_use_institution) {
797
+ let str = this.$refs.paged.$refs.cri.model.f_use_institution + '使用性质'
798
+ this.userusenatures = this.$appdata.getParam(str)
799
+ }
800
+ },
801
+ userUseTypeChange () {
802
+ this.useinstitutions = []
803
+ this.$refs.paged.$refs.cri.model.f_use_institution = ''
804
+ if (this.$refs.paged.$refs.cri.model.f_user_usetype) {
805
+ let str = this.$refs.paged.$refs.cri.model.f_user_usetype + '机构'
806
+ this.useinstitutions = this.$appdata.getParam(str)
807
+ }
808
+ },
755
809
  ReadIDCard(){
756
810
  this.$refs.highcard.sendMsg(this.$refs.highcard.CLT_MSG.READ_IDCARD, (msg) => {
757
811
  console.log('======',msg)
@@ -927,10 +981,14 @@
927
981
  },
928
982
  userTypeChange () {
929
983
  this.gasproperties=[]
984
+ this.userusetypes = []
930
985
  if(this.$refs.paged.$refs.cri.model !==null) {
931
986
  this.$refs.paged.$refs.cri.model.f_gasproperties=''
932
987
  this.gasproperties = this.$appdata.getParam(this.$refs.paged.$refs.cri.model.f_user_type[0])
933
988
  // this.gasproperties.push({label: '全部', value: ''})
989
+ this.$refs.paged.$refs.cri.model.f_use_institution = ''
990
+ let str = this.$refs.paged.$refs.cri.model.f_user_type[0] + '用气类型'
991
+ this.userusetypes = this.$appdata.getParam(str)
934
992
  }
935
993
  else{
936
994
  this.gasproperties =[{label: '全部', value: ''}]
@@ -91,6 +91,7 @@
91
91
  close-on-select
92
92
  style="width:60%"
93
93
  condition="f_user_type = '{}'"
94
+ @change="$parent.$parent.userTypeChange()"
94
95
  id="f_user_type"
95
96
  placeholder='客户类型'
96
97
  v-model="model.f_user_type"
@@ -197,6 +198,41 @@
197
198
  condition="f_curbalance <= {} " placeholder="">
198
199
  </div>
199
200
  </div>
201
+ <div class="col-sm-2 form-group">
202
+ <label for="f_user_usetype" class="font_normal_body ">用气类型</label>
203
+ <v-select :value.sync="model.f_user_usetype" :search="false"
204
+ @change="$parent.$parent.userUseTypeChange()"
205
+ v-model="model.f_user_usetype"
206
+ :options='$parent.$parent.userusetypes'
207
+ condition="f_user_usetype = '{}'"
208
+ placeholder='用气类型'
209
+ value-single="true"
210
+ close-on-select>
211
+ </v-select>
212
+ </div>
213
+ <div class="col-sm-2 form-group">
214
+ <label for="f_use_institution" class="font_normal_body">用气机构</label>
215
+ <v-select :value.sync="model.f_use_institution" :search="false"
216
+ @change="$parent.$parent.userUseInstitutionChange()"
217
+ v-model="model.f_use_institution"
218
+ :options='$parent.$parent.useinstitutions'
219
+ condition="f_use_institution = '{}'"
220
+ placeholder='用气机构'
221
+ value-single="true"
222
+ close-on-select>
223
+ </v-select>
224
+ </div>
225
+ <div class="col-sm-2 form-group">
226
+ <label for="f_user_usenature" class="font_normal_body ">使用性质</label>
227
+ <v-select :value.sync="model.f_user_usenature" :search="false"
228
+ v-model="model.f_user_usenature"
229
+ :options='$parent.$parent.userusenatures'
230
+ condition="f_user_usenature = '{}'"
231
+ placeholder='使用性质'
232
+ value-single="true"
233
+ close-on-select>
234
+ </v-select>
235
+ </div>
200
236
  </div>
201
237
  </div>
202
238
  </criteria>
@@ -370,6 +406,9 @@ import {HttpResetClass, PagedList} from 'vue-client'
370
406
  searchshow: true,
371
407
  startDate1:'',
372
408
  endDate1:'',
409
+ userusetypes: [],
410
+ useinstitutions: [],
411
+ userusenatures: [],
373
412
  // startDate: '',
374
413
  // endDate: '',
375
414
  echarts: false,
@@ -421,6 +460,30 @@ import {HttpResetClass, PagedList} from 'vue-client'
421
460
  this.getfield = this.config.excelHeaders
422
461
  },
423
462
  methods: {
463
+ userUseInstitutionChange () {
464
+ this.userusenatures = []
465
+ this.$refs.paged.$refs.cri.model.f_user_usenature = ''
466
+ if (this.$refs.paged.$refs.cri.model.f_use_institution) {
467
+ let str = this.$refs.paged.$refs.cri.model.f_use_institution + '使用性质'
468
+ this.userusenatures = this.$appdata.getParam(str)
469
+ }
470
+ },
471
+ userUseTypeChange () {
472
+ this.useinstitutions = []
473
+ this.$refs.paged.$refs.cri.model.f_use_institution = ''
474
+ if (this.$refs.paged.$refs.cri.model.f_user_usetype) {
475
+ let str = this.$refs.paged.$refs.cri.model.f_user_usetype + '机构'
476
+ this.useinstitutions = this.$appdata.getParam(str)
477
+ }
478
+ },
479
+ userTypeChange () {
480
+ this.userusetypes = []
481
+ if(this.$refs.paged.$refs.cri.model !==null) {
482
+ this.$refs.paged.$refs.cri.model.f_use_institution = ''
483
+ let str = this.$refs.paged.$refs.cri.model.f_user_type + '用气类型'
484
+ this.userusetypes = this.$appdata.getParam(str)
485
+ }
486
+ },
424
487
  // 查询开关
425
488
  hidden() {
426
489
  this.criteriaShow = !this.criteriaShow
@@ -152,6 +152,41 @@
152
152
  condition=""
153
153
  close-on-select></v-select>
154
154
  </div>
155
+ <div class="col-sm-2 form-group">
156
+ <label for="f_user_usetype" class="font_normal_body ">用气类型</label>
157
+ <v-select :value.sync="model.f_user_usetype" :search="false"
158
+ @change="$parent.$parent.userUseTypeChange()"
159
+ v-model="model.f_user_usetype"
160
+ :options='$parent.$parent.userusetypes'
161
+ condition="f_user_usetype = '{}'"
162
+ placeholder='用气类型'
163
+ value-single="true"
164
+ close-on-select>
165
+ </v-select>
166
+ </div>
167
+ <div class="col-sm-2 form-group">
168
+ <label for="f_use_institution" class="font_normal_body">用气机构</label>
169
+ <v-select :value.sync="model.f_use_institution" :search="false"
170
+ @change="$parent.$parent.userUseInstitutionChange()"
171
+ v-model="model.f_use_institution"
172
+ :options='$parent.$parent.useinstitutions'
173
+ condition="f_use_institution = '{}'"
174
+ placeholder='用气机构'
175
+ value-single="true"
176
+ close-on-select>
177
+ </v-select>
178
+ </div>
179
+ <div class="col-sm-2 form-group">
180
+ <label for="f_user_usenature" class="font_normal_body ">使用性质</label>
181
+ <v-select :value.sync="model.f_user_usenature" :search="false"
182
+ v-model="model.f_user_usenature"
183
+ :options='$parent.$parent.userusenatures'
184
+ condition="f_user_usenature = '{}'"
185
+ placeholder='使用性质'
186
+ value-single="true"
187
+ close-on-select>
188
+ </v-select>
189
+ </div>
155
190
  </div>
156
191
  </div>
157
192
  </criteria>
@@ -247,6 +282,9 @@
247
282
  echarts: false,
248
283
  orgCondtionStr: '(' + this.$login.f.orgid + ')',
249
284
  searchshow: false,
285
+ userusetypes: [],
286
+ useinstitutions: [],
287
+ userusenatures: [],
250
288
  initres: {
251
289
  org:[this.$login.f.orgid],
252
290
  dep:[],
@@ -268,6 +306,22 @@
268
306
  this.$refs.paged.$refs.cri.search()
269
307
  },
270
308
  methods: {
309
+ userUseInstitutionChange () {
310
+ this.userusenatures = []
311
+ this.$refs.paged.$refs.cri.model.f_user_usenature = ''
312
+ if (this.$refs.paged.$refs.cri.model.f_use_institution) {
313
+ let str = this.$refs.paged.$refs.cri.model.f_use_institution + '使用性质'
314
+ this.userusenatures = this.$appdata.getParam(str)
315
+ }
316
+ },
317
+ userUseTypeChange () {
318
+ this.useinstitutions = []
319
+ this.$refs.paged.$refs.cri.model.f_use_institution = ''
320
+ if (this.$refs.paged.$refs.cri.model.f_user_usetype) {
321
+ let str = this.$refs.paged.$refs.cri.model.f_user_usetype + '机构'
322
+ this.useinstitutions = this.$appdata.getParam(str)
323
+ }
324
+ },
271
325
  getMeterType() {
272
326
  this.Warningstyle = [{label: '全部', value: ''}]
273
327
  this.styles = false
@@ -313,12 +367,17 @@
313
367
  this.styles = true
314
368
  },
315
369
  userTypeChange () {
370
+ this.userusetypes = []
316
371
  this.gasproperties=[{label: '全部', value: ''}]
317
372
  if(this.$refs.paged.$refs.cri.model !==null) {
318
373
  this.$refs.paged.$refs.cri.model.f_gasproperties=''
319
374
 
320
375
  console.log(this.$refs.paged.$refs.cri.model.f_user_type[0])
321
376
  this.gasproperties = this.$appdata.getParam(this.$refs.paged.$refs.cri.model.f_user_type[0])
377
+ this.$refs.paged.$refs.cri.model.f_use_institution = ''
378
+ let str = this.$refs.paged.$refs.cri.model.f_user_type[0] + '用气类型'
379
+ this.userusetypes = this.$appdata.getParam(str)
380
+
322
381
  // this.gasproperties.push({label: '全部', value: ''})
323
382
  }
324
383
  else{