manage-client 3.3.58 → 3.3.59

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/build/dev-server.js +21 -34
  2. package/package.json +1 -1
  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
@@ -99,6 +99,50 @@
99
99
  condition="f_state = '{}'"
100
100
  close-on-select></v-select>
101
101
  </div>
102
+ <div class="col-sm-2 form-group">
103
+ <label class="font_normal_body">用户类型</label>
104
+ <v-select :value.sync="model.f_user_type"
105
+ v-model="model.f_user_type"
106
+ @change="$parent.$parent.userTypeChange()"
107
+ :options='$parent.$parent.userTypes' placeholder='请选择'
108
+ condition="f_user_type = '{}'"
109
+ close-on-select></v-select>
110
+ </div>
111
+ <div class="col-sm-2 form-group">
112
+ <label for="f_user_usetype" class="font_normal_body ">用气类型</label>
113
+ <v-select :value.sync="model.f_user_usetype" :search="false"
114
+ @change="$parent.$parent.userUseTypeChange()"
115
+ v-model="model.f_user_usetype"
116
+ :options='$parent.$parent.userusetypes'
117
+ condition="f_user_usetype = '{}'"
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_use_institution" class="font_normal_body">用气机构</label>
125
+ <v-select :value.sync="model.f_use_institution" :search="false"
126
+ @change="$parent.$parent.userUseInstitutionChange()"
127
+ v-model="model.f_use_institution"
128
+ :options='$parent.$parent.useinstitutions'
129
+ condition="f_use_institution = '{}'"
130
+ placeholder='用气机构'
131
+ value-single="true"
132
+ close-on-select>
133
+ </v-select>
134
+ </div>
135
+ <div class="col-sm-2 form-group">
136
+ <label for="f_user_usenature" class="font_normal_body ">使用性质</label>
137
+ <v-select :value.sync="model.f_user_usenature" :search="false"
138
+ v-model="model.f_user_usenature"
139
+ :options='$parent.$parent.userusenatures'
140
+ condition="f_user_usenature = '{}'"
141
+ placeholder='使用性质'
142
+ value-single="true"
143
+ close-on-select>
144
+ </v-select>
145
+ </div>
102
146
  </div>
103
147
 
104
148
  </div>
@@ -284,6 +328,9 @@
284
328
  user:[],
285
329
  },
286
330
  showupload:false,
331
+ userusetypes: [],
332
+ useinstitutions: [],
333
+ userusenatures: [],
287
334
  selected:{},
288
335
 
289
336
  //合计数据
@@ -298,6 +345,30 @@
298
345
  })
299
346
  },
300
347
  methods: {
348
+ userUseInstitutionChange () {
349
+ this.userusenatures = []
350
+ this.$refs.paged.$refs.cri.model.f_user_usenature = ''
351
+ if (this.$refs.paged.$refs.cri.model.f_use_institution) {
352
+ let str = this.$refs.paged.$refs.cri.model.f_use_institution + '使用性质'
353
+ this.userusenatures = this.$appdata.getParam(str)
354
+ }
355
+ },
356
+ userUseTypeChange () {
357
+ this.useinstitutions = []
358
+ this.$refs.paged.$refs.cri.model.f_use_institution = ''
359
+ if (this.$refs.paged.$refs.cri.model.f_user_usetype) {
360
+ let str = this.$refs.paged.$refs.cri.model.f_user_usetype + '机构'
361
+ this.useinstitutions = this.$appdata.getParam(str)
362
+ }
363
+ },
364
+ userTypeChange () {
365
+ this.userusetypes = []
366
+ if(this.$refs.paged.$refs.cri.model !==null) {
367
+ this.$refs.paged.$refs.cri.model.f_use_institution = ''
368
+ let str = this.$refs.paged.$refs.cri.model.f_user_type[0] + '用气类型'
369
+ this.userusetypes = this.$appdata.getParam(str)
370
+ }
371
+ },
301
372
  view(row){
302
373
  this.showupload = true
303
374
  this.selected= row
@@ -450,6 +521,9 @@
450
521
  getfield() {
451
522
  return exportConfig.fillgasConfig
452
523
  },
524
+ userTypes() {
525
+ return [{label: '全部', value: ''}, ...this.$appdata.getParam('用户类型')]
526
+ },
453
527
  fillGasTypes() {
454
528
  return [{label: '全部', value: ''}, ...this.$appdata.getParam('补气类型')]
455
529
  },
@@ -179,6 +179,41 @@
179
179
  condition="f_user_state = '{}'"
180
180
  close-on-select></v-select>
181
181
  </div>
182
+ <div class="col-sm-2 form-group">
183
+ <label for="f_user_usetype" class="font_normal_body ">用气类型</label>
184
+ <v-select :value.sync="model.f_user_usetype" :search="false"
185
+ @change="$parent.$parent.userUseTypeChange()"
186
+ v-model="model.f_user_usetype"
187
+ :options='$parent.$parent.userusetypes'
188
+ condition="f_user_usetype = '{}'"
189
+ placeholder='用气类型'
190
+ value-single="true"
191
+ close-on-select>
192
+ </v-select>
193
+ </div>
194
+ <div class="col-sm-2 form-group">
195
+ <label for="f_use_institution" class="font_normal_body">用气机构</label>
196
+ <v-select :value.sync="model.f_use_institution" :search="false"
197
+ @change="$parent.$parent.userUseInstitutionChange()"
198
+ v-model="model.f_use_institution"
199
+ :options='$parent.$parent.useinstitutions'
200
+ condition="f_use_institution = '{}'"
201
+ placeholder='用气机构'
202
+ value-single="true"
203
+ close-on-select>
204
+ </v-select>
205
+ </div>
206
+ <div class="col-sm-2 form-group">
207
+ <label for="f_user_usenature" class="font_normal_body ">使用性质</label>
208
+ <v-select :value.sync="model.f_user_usenature" :search="false"
209
+ v-model="model.f_user_usenature"
210
+ :options='$parent.$parent.userusenatures'
211
+ condition="f_user_usenature = '{}'"
212
+ placeholder='使用性质'
213
+ value-single="true"
214
+ close-on-select>
215
+ </v-select>
216
+ </div>
182
217
 
183
218
  </div>
184
219
 
@@ -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: ''}]