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.
- package/build/dev-server.js +21 -34
- package/package.json +1 -1
- package/src/components/webmeter/reportdata/ReportDataQuery.vue +0 -6
- package/src/filiale/WEINAN/CancellationQuery.vue +74 -0
- package/src/filiale/WEINAN/ChargeQuery.vue +58 -1
- package/src/filiale/WEINAN/DeviceQuery.vue +63 -0
- package/src/filiale/WEINAN/DisableQuery.vue +74 -0
- package/src/filiale/WEINAN/EnableQuery.vue +74 -0
- package/src/filiale/WEINAN/FillGasQuery.vue +74 -0
- package/src/filiale/WEINAN/InspectListUser.vue +35 -0
- package/src/filiale/WEINAN/MergeFileQuery.vue +77 -1
- package/src/filiale/WEINAN/MeterQuery.vue +58 -0
- package/src/filiale/WEINAN/NewAccountQuery.vue +58 -0
- package/src/filiale/WEINAN/OtherChargeQuery.vue +58 -0
- package/src/filiale/WEINAN/RecordInfoQuery.vue +58 -0
- package/src/filiale/WEINAN/UserGasAll.vue +63 -0
- package/src/filiale/WEINAN/UserGasList.vue +59 -0
- package/src/filiale/WEINAN/UserLostContactAnalysis.vue +63 -0
- package/src/filiale/WEINAN/UserQuery.vue +63 -0
- package/src/filiale/WEINAN/businessquery/FillCardQuery.vue +643 -0
- package/src/filiale/WEINAN/businessquery/HandplanQuery.vue +1428 -0
- package/src/filiale/WEINAN/businessquery/MoveMeterQuery.vue +477 -0
- package/src/filiale/WEINAN/businessquery/ReverseQuery.vue +512 -0
- package/src/filiale/WEINAN/businessquery/TransferQuery.vue +553 -0
- package/src/filiale/WEINAN/businessquery/UserInsured.vue +483 -0
- package/src/filiale/WEINAN/businessquery/priceadjustQuery.vue +535 -0
- package/src/filiale/WEINAN/config/exportConfig.js +41 -38
- package/src/filiale/WEINAN/filesquery/ChangeUserQuery.vue +468 -0
- package/src/filiale/WEINAN/filesquery/FmyGasDeviceQuery.vue +911 -0
- package/src/filiale/WEINAN/filesquery/GasDeviceQuery.vue +1021 -0
- package/src/filiale/WEINAN/filesquery/PriceChangeQuery.vue +468 -0
- package/src/filiale/WEINAN/filesquery/UserDeviceQuery.vue +505 -0
- package/src/filiale/WEINAN/manage/ChangeMeterQuery.vue +63 -0
- package/src/filiale/WEINAN/sale.js +23 -2
- package/src/filiale/WEINAN/webmeter/LostContactAnalysisList.vue +692 -0
- package/src/filiale/WEINAN/webmeter/NewQueryInstruct.vue +564 -0
- package/src/filiale/WEINAN/webmeter/ReportList.vue +483 -0
- package/src/filiale/WEINAN/webmeter/TotalExceptionByMeter.vue +665 -0
- package/src/filiale/WEINAN/webmeter/UserInstructEchartsList.vue +242 -0
- package/src/filiale/WEINAN/webmeter/UserInstructList.vue +390 -0
- package/src/filiale/WEINAN/webmeterManage.js +13 -0
- package/src/filiale/lixianV3/BusinessManage.vue +3 -0
- package/src/filiale/shanxian/UserLostContactAnalysis.vue +35 -3
|
@@ -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{
|
|
@@ -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 = []
|