manage-client 3.2.238 → 3.2.240

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 (28) hide show
  1. package/package.json +1 -1
  2. package/src/components/sale/businessquery/ChangeMeterQuery.vue +28 -1
  3. package/src/components/sale/businessquery/FMYGasQuery.vue +1 -1
  4. package/src/components/sale/config/exportConfig.js +1 -1
  5. package/src/components/sale/filesquery/RecordInfoQuery.vue +3 -3
  6. package/src/components/webmeter/DrillData/LostContactAnalysisList.vue +0 -8
  7. package/src/components/webmeter/DrillData/UserLostContactAnalysis.vue +4 -13
  8. package/src/components/webmeter/newwebmeter/NewException/MeterExceptionList.vue +0 -7
  9. package/src/filiale/WEINAN/NewAccountQuery.vue +4 -4
  10. package/src/filiale/huayin/ChangeMeterQuery.vue +2 -2
  11. package/src/filiale/qianneng/QnJgqGshzbb.vue +11 -10
  12. package/src/filiale/qianneng/QnJgqGsxsmx.vue +68 -16
  13. package/src/filiale/qianneng/QnJgqMgqbb.vue +1 -1
  14. package/src/filiale/qianneng/QnJgqMyhzbb.vue +3 -3
  15. package/src/filiale/qianneng/QnJgqMyxsmx.vue +61 -2
  16. package/src/filiale/qianneng/QnJgqXsjgbb.vue +1 -1
  17. package/src/filiale/qianneng/QnJgqZhdacx.vue +76 -20
  18. package/src/filiale/qianneng/exportConfig.js +4 -4
  19. package/src/filiale/shanxian/RecordInfoQuery.vue +3 -3
  20. package/src/filiale/shanxian/SiteManager.vue +210 -154
  21. package/src/filiale/wenxi/ChargeQuery.vue +1 -1
  22. package/src/filiale/wenxi/sale.js +1 -18
  23. package/src/filiale/xiangyun/ChargeQuery.vue +4 -0
  24. package/src/filiale/zhongyi/LostContactAnalysisList.vue +563 -537
  25. package/src/filiale/zhongyi/MeterExceptionList.vue +7 -0
  26. package/src/filiale/zhongyi/UserLostContactAnalysis.vue +592 -0
  27. package/src/filiale/zhongyi/sale.js +8 -10
  28. package/src/filiale/zhongyi/webmeterManage.js +5 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "manage-client",
3
- "version": "3.2.238",
3
+ "version": "3.2.240",
4
4
  "description": "经营管控模块前台组件",
5
5
  "main": "src/index.js",
6
6
  "directories": {
@@ -204,6 +204,18 @@
204
204
  <th>
205
205
  <nobr>付款方式</nobr>
206
206
  </th>
207
+ <th>
208
+ <nobr>气表底数</nobr>
209
+ </th>
210
+ <th>
211
+ <nobr>表上余额</nobr>
212
+ </th>
213
+ <th>
214
+ <nobr>累购气量</nobr>
215
+ </th>
216
+ <th>
217
+ <nobr>累购金额</nobr>
218
+ </th>
207
219
  <th>
208
220
  <!--<nobr>客户地址</nobr>-->
209
221
  <data-order field="f_address" name="客户地址"
@@ -281,6 +293,18 @@
281
293
  <td style="text-align: center;">
282
294
  <nobr>{{row.f_payment}}</nobr>
283
295
  </td>
296
+ <td style="text-align: center;">
297
+ <nobr>{{row.f_meter_base}}</nobr>
298
+ </td>
299
+ <td style="text-align: center;">
300
+ <nobr>{{row.f_balance_amount}}</nobr>
301
+ </td>
302
+ <td style="text-align: center;">
303
+ <nobr>{{row.leigougas}}</nobr>
304
+ </td>
305
+ <td style="text-align: center;">
306
+ <nobr>{{row.leigoumoney}}</nobr>
307
+ </td>
284
308
  <td style="text-align: center;">
285
309
  <nobr>{{row.f_address}}</nobr>
286
310
  </td>
@@ -358,6 +382,9 @@
358
382
  style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;color: #5CB95C;font-weight: bold">
359
383
  汇总信息
360
384
  </td>
385
+ <td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;font-weight: bold">
386
+ 表上余额合计:&emsp;{{sumsmodel.f_balance_amount}}
387
+ </td>
361
388
  <td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;font-weight: bold">
362
389
  换表费合计:&emsp;{{sumsmodel.f_changemeter_fee}}
363
390
  </td>
@@ -436,7 +463,7 @@
436
463
  footer:[],
437
464
  meterbrands: [],
438
465
  pricenames: [],
439
- model: new PagedList('rs/sql/changeMeterQuery', 20, {orderitem: this.orderitem?'"' + this.orderitem + ' "':`'f_operate_date desc'`}, {f_changemeter_fee: 0,f_remanent_money:0,f_remanent_gas:0,hushu:0}),
466
+ model: new PagedList('rs/sql/changeMeterQuery', 20, {orderitem: this.orderitem?'"' + this.orderitem + ' "':`'f_operate_date desc'`}, {f_balance_amount: 0,f_changemeter_fee: 0,f_remanent_money:0,f_remanent_gas:0,hushu:0}),
440
467
  criteriaShow: false,
441
468
  orgCondtionStr: '',
442
469
  modelval: [],
@@ -108,7 +108,7 @@
108
108
  </div>
109
109
  <div class="col-sm-2 form-group">
110
110
  <label class="font_normal_body">客户表号</label>
111
- <input type="text" style="width:60%" class="input_search" v-model.trim="model.f_meternumber"
111
+ <input type="text" style="width:60%" class="input_search" v-model="model.f_meternumber"
112
112
  condition="f_meternumber like '%{}%'" placeholder='客户表号'>
113
113
  </div>
114
114
  <div class="col-sm-2 form-group">
@@ -256,7 +256,7 @@ export default{
256
256
  'f_type': '换表类型', 'f_changemeter_fee': '换表费', 'f_meternumber_old': '旧表号', 'f_meternumber': '新表号',
257
257
  'f_meter_brand_old': '旧气表品牌', 'f_meter_brand': '新气表品牌', 'f_remanent_gas': '补气量', 'f_remanent_money': '补气金额',
258
258
  'f_comments': '备注', 'f_change_operator': '换表人', 'f_state': '状态', 'f_operate_date': '操作日期', 'f_payment': '付款方式', 'f_othereason': '换表原因',
259
- 'f_operator': '人员', 'f_depname': '部门', 'f_orgname': '公司'
259
+ 'f_operator': '人员', 'f_depname': '部门', 'f_orgname': '公司', 'f_meter_base': '气表底数', 'f_balance_amount': '表上余额', 'leigougas': '累购气量', 'leigoumoney': '累购金额'
260
260
  },
261
261
  changemeterprintConfig: {
262
262
  'f_userinfo_code': '客户编号', 'f_user_name': '客户名称', 'f_address': '客户地址',
@@ -125,7 +125,7 @@
125
125
  </div>
126
126
  <div class="col-sm-2 form-group">
127
127
  <label class="font_normal_body">燃气表号</label>
128
- <input type="text" style="width:60%" class="input_search" v-model.trim="model.f_meternumber"
128
+ <input type="text" style="width:60%" class="input_search" v-model="model.f_meternumber"
129
129
  condition="f_meternumber like '%{}%'" placeholder='燃气表号'>
130
130
  </div>
131
131
 
@@ -148,7 +148,7 @@
148
148
  </div>
149
149
  <div class="col-sm-2 form-group">
150
150
  <label class="font_normal_body">表&emsp;&emsp;号</label>
151
- <input type="text" style="width:60%" class="input_search" v-model.trim="model.f_meter_number"
151
+ <input type="text" style="width:60%" class="input_search" v-model="model.f_meter_number"
152
152
  condition="f_meternumber = '{}'" placeholder='表号'>
153
153
  </div>
154
154
  <div class="col-sm-2 form-group">
@@ -396,7 +396,7 @@
396
396
  </div>
397
397
  <div class="col-sm-2 form-group" >
398
398
  <label class="font_normal_body">气表表号</label>
399
- <input type="text" style="width:60%" class="input_search" v-model.trim="model.f_meternumber"
399
+ <input type="text" style="width:60%" class="input_search" v-model="model.f_meternumber"
400
400
  condition="f_meternumber like '%{}%'" placeholder='气表表号'>
401
401
  </div>
402
402
  <div class="col-sm-2 form-group">
@@ -194,14 +194,6 @@
194
194
  <!--condition="new_days <= {}" v-next-el='new_days' v-el:new_days-->
195
195
  <!--&gt;-->
196
196
  <!--</div>-->
197
- <div class="col-sm-2 form-group">
198
- <label class="font_normal_body">小区</label>
199
- <input @keyup.enter="search" style="width:60%" type="text" class="input_search" v-model="model.f_residential_area"
200
- placeholder='请输入小区'
201
- condition="f_residential_area like '%{}%'"
202
- >
203
- </div>
204
-
205
197
  </div>
206
198
 
207
199
 
@@ -115,12 +115,9 @@
115
115
  <div class="col-sm-2 form-group">
116
116
  <label class="font_normal_body">用户状态</label>
117
117
  <v-select
118
- placeholder='用户状态'
119
- value-single
118
+ placeholder='正常'
120
119
  style="width:60%"
121
- :value.sync="model.f_user_state"
122
- v-model="model.f_user_state"
123
- :options='$parent.$parent.userstate'
120
+ :value.sync="f_user_state"
124
121
  close-on-select condition="f_user_state ='{}'">
125
122
  </v-select>
126
123
  </div>
@@ -145,13 +142,6 @@
145
142
  close-on-select>
146
143
  </v-select>
147
144
  </div>
148
- <div class="col-sm-2 form-group">
149
- <label class="font_normal_body">小区</label>
150
- <input @keyup.enter="search" style="width:60%" type="text" class="input_search" v-model="model.f_residential_area"
151
- placeholder='请输入小区'
152
- condition="f_residential_area like '%{}%'"
153
- >
154
- </div>
155
145
 
156
146
  </div>
157
147
 
@@ -372,7 +362,8 @@
372
362
  {label: '用气性质', value: 'f_gasproperties'},
373
363
  {label: '分公司', value: 'f_orgname'},
374
364
  {label: '最长失联天数', value: 'max_days_type'},
375
- ]
365
+ ],
366
+ f_user_state:'正常'
376
367
  }
377
368
  },
378
369
  ready() {
@@ -176,13 +176,6 @@
176
176
  close-on-select>
177
177
  </v-select>
178
178
  </div>
179
- <div class="col-sm-2 form-group">
180
- <label class="font_normal_body">小区</label>
181
- <input @keyup.enter="search" style="width:60%" type="text" class="input_search" v-model="model.f_residential_area"
182
- placeholder='请输入小区'
183
- condition="f_residential_area like '%{}%'"
184
- >
185
- </div>
186
179
  </div>
187
180
  </div>
188
181
  </criteria>
@@ -14,7 +14,7 @@
14
14
  :value.sync="model.startDate"
15
15
  :format="'yyyy-MM-dd'"
16
16
  :show-reset-button="true"
17
- condition="f_operate_date >= '{} 00:00:00'">
17
+ condition="f_open_date >= '{} 00:00:00'">
18
18
  </datepicker>
19
19
  </div>
20
20
  <div class="col-sm-2 form-group">
@@ -24,7 +24,7 @@
24
24
  :value.sync="model.endDate"
25
25
  :format="'yyyy-MM-dd'"
26
26
  :show-reset-button="true"
27
- condition="f_operate_date <= '{} 23:59:59'">
27
+ condition="f_open_date <= '{} 23:59:59'">
28
28
  </datepicker>
29
29
  </div>
30
30
  <div class="span" style="float:right;">
@@ -171,10 +171,10 @@
171
171
  <nobr>{{row.isbgl}}</nobr>
172
172
  </td>
173
173
  <td style="text-align: center;">
174
- <nobr>{{row.operator}}</nobr>
174
+ <nobr>{{row.f_operator}}</nobr>
175
175
  </td>
176
176
  <td style="text-align: center;">
177
- <nobr>{{row.f_operate_date}}</nobr>
177
+ <nobr>{{row.f_open_date}}</nobr>
178
178
  </td>
179
179
  <td style="text-align: center;">
180
180
  <nobr>{{row.depname}}</nobr>
@@ -166,7 +166,7 @@
166
166
  </div>
167
167
  <div class="col-sm-2 form-group">
168
168
  <label class="font_normal_body">表&emsp;&emsp;号</label>
169
- <input type="text" style="width:60%" class="input_search" v-model.trim="model.f_meternumber"
169
+ <input type="text" style="width:60%" class="input_search" v-model="model.f_meternumber"
170
170
  condition="f_meternumber = '{}'" placeholder='表号'>
171
171
  </div>
172
172
  <div class="col-sm-2 form-group">
@@ -176,7 +176,7 @@
176
176
  </div>
177
177
  <div class="col-sm-2 form-group">
178
178
  <label class="font_normal_body">旧&emsp;表&emsp;号</label>
179
- <input type="text" style="width:60%" class="input_search" v-model.trim="model.f_meternumber"
179
+ <input type="text" style="width:60%" class="input_search" v-model="model.f_meternumber"
180
180
  condition="f_meternumber_old = '{}'" placeholder='旧表号'>
181
181
  </div>
182
182
  <div class="col-sm-2 form-group">
@@ -15,7 +15,7 @@
15
15
  <v-select :value.sync="model.a_jfyf"
16
16
  :options='$parent.$parent.jfyfArray' placeholder='请选择' v-model="model.a_jfyf"
17
17
  condition="a_jfyf in {}"
18
- close-on-select></v-select>
18
+ multiple></v-select>
19
19
  </div>
20
20
 
21
21
  <div class="col-sm-2 form-group">
@@ -270,20 +270,21 @@
270
270
  this.residentialArea = house
271
271
  },
272
272
  async getjfyf(){
273
- console.log('开始获取交费月份')
274
273
  let HttpReset = new HttpResetClass()
275
- var data = await HttpReset.load('POST', 'rs/sql/qnJgqgetjfyf', {
274
+ var data = await HttpReset.load('POST', 'rs/sql/singleTable_Final', {
276
275
  data: {
277
- condition: `1=1 `
276
+ condition: '1=1',
277
+ tablename: 'qn_jgq_hzb',
278
+ groupitem: 'a_jfyf',
279
+ orderitem: 'a_jfyf',
280
+ items: 'a_jfyf'
278
281
  }
279
- }, {resolveMsg: null, rejectMsg: '获取交费月份失败!'})
280
- console.log('交费月份',data)
281
- let a_jfyf = []
282
+ }, {resolveMsg: null, rejectMsg: '获取失败!'})
283
+ let nameArr = [{label: '全部', value: ''}]
282
284
  for (let row of data.data){
283
- console.log('开始保存交费月份')
284
- a_jfyf.push({label: row.a_jfyf, value: row.a_jfyf})
285
+ nameArr.push({label: row.a_jfyf, value: row.a_jfyf})
285
286
  }
286
- this.jfyfArray = a_jfyf
287
+ this.jfyfArray = nameArr
287
288
  },
288
289
 
289
290
 
@@ -11,9 +11,9 @@
11
11
  <div class="col-sm-2 form-group">
12
12
  <label class="font_normal_body">月份</label>
13
13
  <v-select :value.sync="model.t_jfyf"
14
- :options='$parent.$parent.jfyfArray' placeholder='请选择' v-model="model.t_jfyf"
14
+ :options='$parent.$parent.jfnfArray' placeholder='请选择' v-model="model.t_jfyf" multiple
15
15
  condition="t_jfyf in {}"
16
- close-on-select></v-select>
16
+ ></v-select>
17
17
  </div>
18
18
  <div class="col-sm-2 form-group">
19
19
  <label class="font_normal_body">客户编号</label>
@@ -24,9 +24,17 @@
24
24
  <div class="col-sm-2 form-group">
25
25
  <label class="font_normal_body">用气性质</label>
26
26
  <v-select :value.sync="model.u_xyqxz"
27
- :options='$parent.$parent.gasproperties' placeholder='请选择' v-model="model.u_xyqxz"
28
- condition="f_calculation in {}"
29
- close-on-select></v-select>
27
+ :options='$parent.$parent.yqxzArray' placeholder='请选择' v-model="model.u_xyqxz" multiple
28
+ condition="u_xyqxz in {}"
29
+ ></v-select>
30
+ </div>
31
+
32
+ <div class="col-sm-2 form-group">
33
+ <label class="font_normal_body">表具类型</label>
34
+ <v-select :value.sync="model.bjlx"
35
+ :options='$parent.$parent.bjlxArray' placeholder='请选择' v-model="model.bjlx" multiple
36
+ condition="bjlx in {}"
37
+ ></v-select>
30
38
  </div>
31
39
 
32
40
  <div class="span" style="float:right;">
@@ -106,6 +114,9 @@
106
114
  <th>
107
115
  <nobr>抄表员</nobr>
108
116
  </th>
117
+ <th>
118
+ <nobr>通气日期</nobr>
119
+ </th>
109
120
  </tr>
110
121
  </template>
111
122
  <template partial='body'>
@@ -163,6 +174,9 @@
163
174
  <td style="text-align: center;">
164
175
  <nobr>{{row.cbg}}</nobr>
165
176
  </td>
177
+ <td style="text-align: center;">
178
+ <nobr>{{row.tqrq}}</nobr>
179
+ </td>
166
180
  </template>
167
181
  <template partial='foot'>
168
182
  </template>
@@ -257,7 +271,9 @@
257
271
  //小区
258
272
  residentialArea: [],
259
273
  //缴费月份
260
- jfyfArray: [],
274
+ jfnfArray: [],
275
+ yqxzArray: [],
276
+ bjlxArray: [],
261
277
  //表册片区
262
278
  bookSlice:[{label: '全部',value: ''}],
263
279
  inputtores:[{label: '全部',value: ''}], //抄表员
@@ -278,7 +294,8 @@
278
294
  //self.$refs.paged.$refs.cri.model.startDate = self.$login.toStandardDateString()
279
295
  //self.$refs.paged.$refs.cri.model.endDate = self.$login.toStandardDateString()
280
296
  this.getjfyf()
281
-
297
+ this.getBjlx()
298
+ this.getYqxz()
282
299
  this.userTypeChange ();
283
300
  },
284
301
  methods: {
@@ -341,20 +358,55 @@
341
358
  this.residentialArea = house
342
359
  },
343
360
  async getjfyf(){
344
- console.log('开始获取交费月份')
345
361
  let HttpReset = new HttpResetClass()
346
- var data = await HttpReset.load('POST', 'rs/sql/qnJgqgetmxjfyf', {
362
+ var data = await HttpReset.load('POST', 'rs/sql/singleTable_Final', {
363
+ data: {
364
+ condition: '1=1',
365
+ tablename: 'qn_jgq_gsmxb',
366
+ groupitem: 't_jfyf',
367
+ orderitem: 't_jfyf',
368
+ items: 't_jfyf'
369
+ }
370
+ }, {resolveMsg: null, rejectMsg: '获取失败!'})
371
+ let nameArr = [{label: '全部', value: ''}]
372
+ for (let row of data.data){
373
+ nameArr.push({label: row.t_jfyf, value: row.t_jfyf})
374
+ }
375
+ this.jfnfArray = nameArr
376
+ },
377
+ async getYqxz(){
378
+ let HttpReset = new HttpResetClass()
379
+ var data = await HttpReset.load('POST', 'rs/sql/singleTable_Final', {
380
+ data: {
381
+ condition: '1=1',
382
+ tablename: 'qn_jgq_gsmxb',
383
+ groupitem: 'u_xyqxz',
384
+ orderitem: 'u_xyqxz',
385
+ items: 'u_xyqxz'
386
+ }
387
+ }, {resolveMsg: null, rejectMsg: '获取失败!'})
388
+ let nameArr = [{label: '全部', value: ''}]
389
+ for (let row of data.data){
390
+ nameArr.push({label: row.u_xyqxz, value: row.u_xyqxz})
391
+ }
392
+ this.yqxzArray = nameArr
393
+ },
394
+ async getBjlx(){
395
+ let HttpReset = new HttpResetClass()
396
+ var data = await HttpReset.load('POST', 'rs/sql/singleTable_Final', {
347
397
  data: {
348
- condition: `1=1 `
398
+ condition: '1=1',
399
+ tablename: 'qn_jgq_gsmxb',
400
+ groupitem: 'bjlx',
401
+ orderitem: 'bjlx',
402
+ items: 'bjlx'
349
403
  }
350
- }, {resolveMsg: null, rejectMsg: '获取交费月份失败!'})
351
- console.log('交费月份',data)
352
- let a_jfyf = []
404
+ }, {resolveMsg: null, rejectMsg: '获取失败!'})
405
+ let nameArr = [{label: '全部', value: ''}]
353
406
  for (let row of data.data){
354
- console.log('开始保存交费月份')
355
- a_jfyf.push({label: row.t_jfyf, value: row.t_jfyf})
407
+ nameArr.push({label: row.bjlx, value: row.bjlx})
356
408
  }
357
- this.jfyfArray = a_jfyf
409
+ this.bjlxArray = nameArr
358
410
  },
359
411
  //把数据库查询数据转换为下拉数据
360
412
  calculate(rows){
@@ -14,7 +14,7 @@
14
14
  <v-select :value.sync="model.t_jfyf"
15
15
  :options='$parent.$parent.jfnfArray' placeholder='请选择' v-model="model.t_jfyf"
16
16
  condition="t_jfyf in {}"
17
- close-on-select></v-select>
17
+ multiple></v-select>
18
18
  </div>
19
19
 
20
20
  <div class="col-sm-2 form-group">
@@ -14,15 +14,15 @@
14
14
  <v-select :value.sync="model.jfnf"
15
15
  :options='$parent.$parent.jfnfArray' placeholder='请选择' v-model="model.jfnf"
16
16
  condition="jfnf in {}"
17
- close-on-select></v-select>
17
+ multiple></v-select>
18
18
  </div>
19
19
 
20
20
  <div class="col-sm-2 form-group">
21
21
  <label class="font_normal_body">用气性质</label>
22
22
  <v-select :value.sync="model.f_gasproperties" v-model="model.f_gasproperties"
23
23
  :options='$parent.$parent.gasproperties' placeholder='请选择'
24
- condition="f_gasproperties = '{}'"
25
- close-on-select></v-select>
24
+ condition="r_yqxzcfl in {}"
25
+ multiple></v-select>
26
26
  </div>
27
27
 
28
28
  <div class="span" style="float:right;">
@@ -14,7 +14,22 @@
14
14
  <v-select :value.sync="model.t_jfyf"
15
15
  :options='$parent.$parent.jfnfArray' placeholder='请选择' v-model="model.t_jfyf"
16
16
  condition="t_jfyf in {}"
17
- close-on-select></v-select>
17
+ multiple></v-select>
18
+ </div>
19
+ <div class="col-sm-2 form-group">
20
+ <label class="font_normal_body">用气性质</label>
21
+ <v-select :value.sync="model.u_xyqxz"
22
+ :options='$parent.$parent.yqxzArray' placeholder='请选择' v-model="model.u_xyqxz" multiple
23
+ condition="r_yqxzcfl in {}"
24
+ ></v-select>
25
+ </div>
26
+
27
+ <div class="col-sm-2 form-group">
28
+ <label class="font_normal_body">表具类型</label>
29
+ <v-select :value.sync="model.bjlx"
30
+ :options='$parent.$parent.bjlxArray' placeholder='请选择' v-model="model.bjlx" multiple
31
+ condition="bjlx in {}"
32
+ ></v-select>
18
33
  </div>
19
34
 
20
35
  <div class="col-sm-2 form-group">
@@ -102,6 +117,9 @@
102
117
  <th>
103
118
  <nobr>抄表员</nobr>
104
119
  </th>
120
+ <th>
121
+ <nobr>通气日期</nobr>
122
+ </th>
105
123
  </tr>
106
124
  </template>
107
125
  <template partial='body'>
@@ -163,6 +181,9 @@
163
181
  <td style="text-align: center;">
164
182
  <nobr>{{row.cbg}}</nobr>
165
183
  </td>
184
+ <td style="text-align: center;">
185
+ <nobr>{{row.tqrq}}</nobr>
186
+ </td>
166
187
  </template>
167
188
  <template partial='foot'>
168
189
  </template>
@@ -225,6 +246,8 @@ export default {
225
246
  },
226
247
  gasproperties:[],
227
248
  jfnfArray:[],
249
+ yqxzArray: [],
250
+ bjlxArray: [],
228
251
  //默认打印列
229
252
  defaultfield: [],
230
253
  config: {
@@ -276,7 +299,9 @@ export default {
276
299
  //this.initAreas(this.$login.f.orgid)
277
300
  //self.$refs.paged.$refs.cri.model.startDate = self.$login.toStandardDateString()
278
301
  //self.$refs.paged.$refs.cri.model.endDate = self.$login.toStandardDateString()
279
- this.getJfnf();
302
+ this.getJfnf()
303
+ this.getBjlx()
304
+ this.getYqxz()
280
305
  },
281
306
  methods: {
282
307
  async getinputtores () {
@@ -321,6 +346,40 @@ export default {
321
346
  }
322
347
  this.jfnfArray = nameArr
323
348
  },
349
+ async getYqxz(){
350
+ let HttpReset = new HttpResetClass()
351
+ var data = await HttpReset.load('POST', 'rs/sql/singleTable_Final', {
352
+ data: {
353
+ condition: '1=1',
354
+ tablename: 'qn_jgq_mymx',
355
+ groupitem: 'r_yqxzcfl',
356
+ orderitem: 'r_yqxzcfl',
357
+ items: 'r_yqxzcfl'
358
+ }
359
+ }, {resolveMsg: null, rejectMsg: '获取失败!'})
360
+ let nameArr = [{label: '全部', value: ''}]
361
+ for (let row of data.data){
362
+ nameArr.push({label: row.r_yqxzcfl, value: row.r_yqxzcfl})
363
+ }
364
+ this.yqxzArray = nameArr
365
+ },
366
+ async getBjlx(){
367
+ let HttpReset = new HttpResetClass()
368
+ var data = await HttpReset.load('POST', 'rs/sql/singleTable_Final', {
369
+ data: {
370
+ condition: '1=1',
371
+ tablename: 'qn_jgq_mymx',
372
+ groupitem: 'bjlx',
373
+ orderitem: 'bjlx',
374
+ items: 'bjlx'
375
+ }
376
+ }, {resolveMsg: null, rejectMsg: '获取失败!'})
377
+ let nameArr = [{label: '全部', value: ''}]
378
+ for (let row of data.data){
379
+ nameArr.push({label: row.bjlx, value: row.bjlx})
380
+ }
381
+ this.bjlxArray = nameArr
382
+ },
324
383
  async getGaspropperties(){
325
384
  let HttpReset = new HttpResetClass()
326
385
  var data = await HttpReset.load('POST', 'rs/sql/singleTable_Final', {
@@ -14,7 +14,7 @@
14
14
  <v-select :value.sync="model.a_yf"
15
15
  :options='$parent.$parent.jfnfArray' placeholder='请选择' v-model="model.a_yf"
16
16
  condition="a_yf in {}"
17
- close-on-select></v-select>
17
+ multiple></v-select>
18
18
  </div>
19
19
 
20
20
  <div class="span" style="float:right;">