manage-client 3.2.240 → 3.2.241

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.
@@ -0,0 +1,624 @@
1
+ <template>
2
+ <div id="unit" class="flex-row">
3
+ <div class="basic-main" @keyup.enter="search" v-if="!show">
4
+ <div class="flex">
5
+ <div style="flex:1;" class="flex" >
6
+ <criteria-paged :model="model" v-ref:paged @sort="sort">
7
+ <criteria partial='criteria' @condition-changed='$parent.selfSearch' v-ref:cri>
8
+ <div novalidate class="form-horizontal select-overspread container-fluid auto" partial>
9
+ <div class="row">
10
+ <res-select-group :show-component="['company']" :initres="$parent.$parent.initres" @re-res="$parent.$parent.getRes" v-ref:sel></res-select-group>
11
+
12
+ <div class="col-sm-2 form-group">
13
+ <label class="font_normal_body">年份</label>
14
+ <v-select :value.sync="model.a_yf"
15
+ :options='$parent.$parent.jfnfArray' placeholder='请选择' v-model="model.a_yf"
16
+ condition="a_yf like '{}%'"
17
+ closeOnSelect></v-select>
18
+ </div>
19
+
20
+ <div class="span" style="float:right;">
21
+ <button class="button_search button_spacing" @click="$parent.$parent.search()">查询</button>
22
+ <button class="button_clear button_spacing" @click="$parent.$parent.clear()">清空</button>
23
+ <!--<button class="btn btn-default" @click="$parent.$parent.stamp()">打印</button>-->
24
+
25
+ <export-excel :data="$parent.$parent.getCondition"
26
+ :field="$parent.$parent.getExportField"
27
+ :footer="$parent.$parent.footer"
28
+ :header="$parent.$parent.other"
29
+ sqlurl="rs/logic/exportfile" sql-name="qnJgqXsjgbbWs" template-name='销售结构报表导出'
30
+ :choose-col="true"></export-excel>
31
+
32
+ <div style="float: right" class="button_spacing" :class="{'button_shrink_top':$parent.$parent.criteriaShow,'button_shrink_bottom':!$parent.$parent.criteriaShow}" @click="$parent.$parent.hidden()"></div>
33
+ </div>
34
+ </div>
35
+ </div>
36
+ </criteria>
37
+
38
+ <data-grid :model="model" partial='list' class="list_area table_sy" @dblclick="$parent.dblclick" v-ref:grid>
39
+ <template partial='head'>
40
+ <tr>
41
+ <th>
42
+ <nobr>月份</nobr>
43
+ </th>
44
+ <th>
45
+ <nobr>民用户数</nobr>
46
+ </th>
47
+ <th>
48
+ <nobr>民用气量</nobr>
49
+ </th>
50
+ <th>
51
+ <nobr>民用煤改气户数</nobr>
52
+ </th>
53
+ <th>
54
+ <nobr>民用煤改气气量</nobr>
55
+ </th>
56
+ <th>
57
+ <nobr>民用气量小计</nobr>
58
+ </th>
59
+ <th>
60
+ <nobr>工业户数</nobr>
61
+ </th>
62
+ <th>
63
+ <nobr>工业气量</nobr>
64
+ </th>
65
+ <th>
66
+ <nobr>公福户数</nobr>
67
+ </th>
68
+ <th>
69
+ <nobr>公福气量</nobr>
70
+ </th>
71
+ <th>
72
+ <nobr>商业户数</nobr>
73
+ </th>
74
+ <th>
75
+ <nobr>商业气量</nobr>
76
+ </th>
77
+ <th>
78
+ <nobr>气量合计</nobr>
79
+ </th>
80
+ <th>
81
+ <nobr>民用</nobr>
82
+ </th>
83
+ <th>
84
+ <nobr>工业</nobr>
85
+ </th>
86
+ <th>
87
+ <nobr>公福</nobr>
88
+ </th>
89
+ <th>
90
+ <nobr>商业</nobr>
91
+ </th>
92
+ <th>
93
+ <nobr>合计</nobr>
94
+ </th>
95
+ </tr>
96
+ </template>
97
+ <template partial='body'>
98
+ <td style="text-align: center;">
99
+ <nobr>{{row.a_yf}}</nobr>
100
+ </td>
101
+ <td style="text-align: center;">
102
+ <nobr>{{row.b_myhs}}</nobr>
103
+ </td>
104
+ <td style="text-align: center;">
105
+ <nobr>{{row.c_myql}}</nobr>
106
+ </td>
107
+ <td style="text-align: center;">
108
+ <nobr>{{row.d_mymgqhs}}</nobr>
109
+ </td>
110
+ <td style="text-align: center;">
111
+ <nobr>{{row.e_mymgqql}}</nobr>
112
+ </td>
113
+ <td style="text-align: center;">
114
+ <nobr>{{row.f_myqlxj}}</nobr>
115
+ </td>
116
+ <td style="text-align: center;">
117
+ <nobr>{{row.g_gyhs}}</nobr>
118
+ </td>
119
+ <td style="text-align: center;">
120
+ <nobr>{{row.h_gyql}}</nobr>
121
+ </td>
122
+ <td style="text-align: center;">
123
+ <nobr>{{row.i_gfhs}}</nobr>
124
+ </td>
125
+ <td style="text-align: center;">
126
+ <nobr>{{row.j_gfql}}</nobr>
127
+ </td>
128
+ <td style="text-align: center;">
129
+ <nobr>{{row.k_syhs}}</nobr>
130
+ </td>
131
+ <td style="text-align: center;">
132
+ <nobr>{{row.l_syql}}</nobr>
133
+ </td>
134
+ <td style="text-align: center;">
135
+ <nobr>{{row.m_qlhj}}</nobr>
136
+ </td>
137
+ <td style="text-align: center;">
138
+ <nobr>{{row.n_my}}</nobr>
139
+ </td>
140
+ <td style="text-align: center;">
141
+ <nobr>{{row.o_gy}}</nobr>
142
+ </td>
143
+ <td style="text-align: center;">
144
+ <nobr>{{row.p_gf}}</nobr>
145
+ </td>
146
+ <td style="text-align: center;">
147
+ <nobr>{{row.q_sy}}</nobr>
148
+ </td>
149
+ <td style="text-align: center;">
150
+ <nobr>{{row.r_hj}}</nobr>
151
+ </td>
152
+ </template>
153
+ <template partial='foot'>
154
+ </template>
155
+ </data-grid>
156
+ </criteria-paged>
157
+ <table class="table-hover">
158
+ <tr style="position: relative" class="table-bordered">
159
+ <td
160
+ style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;color: #5CB95C;font-weight: bold">
161
+ 汇总信息
162
+ </td>
163
+ <td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;font-weight: bold">
164
+
165
+ </td>
166
+ </tr>
167
+ </table>
168
+ </div>
169
+
170
+ </div>
171
+ </div>
172
+ <div class="basic-main" style="width:99%;height:98%;margin-bottom:0px" v-if="show">
173
+ <user-info-detail-manage-new :f_userinfo_id="rowdata.f_userinfo_id" @cancel-main="cancel"></user-info-detail-manage-new>
174
+ </div>
175
+ </div>
176
+ </template>
177
+
178
+ <script>
179
+ import {HttpResetClass, PagedList} from 'vue-client'
180
+ import defaultPrint from '../../components/sale/config/DefaultPrint'
181
+ import exportConfig from './exportConfig'
182
+
183
+ let readySomething = async function (self) {
184
+ self.$MagGetSaleParam.initinputtor();
185
+ self.getinputtores();
186
+ // 获取区县
187
+ self.$refs.paged.$refs.cri.model.startDate = self.$login.toStandardDateString()
188
+ self.$refs.paged.$refs.cri.model.endDate = self.$login.toStandardDateString()
189
+ // await self.$refs.paged.$refs.cri.search()
190
+ self.sumsmodel = self.$refs.paged.$refs.grid.model.sums
191
+ self.defaultfield = [...self.defaultfield, ...self.config.defaultPrint]
192
+ }
193
+
194
+ export default {
195
+ title: '销售结构报表',
196
+ data() {
197
+ return {
198
+ other:[],
199
+ footer:[],
200
+ model: new PagedList('rs/sql/qnJgqXsjgbbWs', 20, {}),
201
+ criteriaShow: false,
202
+ orgCondtionStr: '',
203
+ modelval: [],
204
+ printshow: false,
205
+ all: false,
206
+ fields: {},
207
+ //排序
208
+ orderitem:'',
209
+ orderFields: {
210
+
211
+ },
212
+ gasproperties:[],
213
+ jfnfArray:[],
214
+ //默认打印列
215
+ defaultfield: [],
216
+ config: {
217
+ defaultPrint: []
218
+ },
219
+ balance2:'',
220
+ thead: '',
221
+ tfoot: '',
222
+ area: [],
223
+ //合计数据
224
+ sumsmodel: {},
225
+ initres: {
226
+ org:[this.$login.f.orgid],
227
+ dep:[],
228
+ user:[],
229
+ },
230
+ userdetail: {
231
+ show: false,
232
+ f_userinfo_code: '',
233
+ f_filialeids: ''
234
+ },
235
+
236
+ show:false,
237
+ rowdata:{},
238
+ meterInfo:{},
239
+ deviceInfo:{},
240
+ condition2:'',
241
+
242
+
243
+ weixinSign:[{label:"全部",value:""},{label:"已绑定",value:"已绑定"},{label:"未绑定",value:"未绑定"}],
244
+ //小区
245
+ residentialArea: [],
246
+ //表册片区
247
+ bookSlice:[{label: '全部',value: ''}],
248
+ inputtores:[{label: '全部',value: ''}], //抄表员
249
+ allorgid:[],
250
+ f_filialeid: this.$login.f.f_orgid,
251
+ dypayment:[{label:"全部",value:""},{label:"银行代扣",value:"银行代扣",},{label:"现金缴费",value:"现金缴费",}],
252
+ }
253
+ },
254
+ ready() {
255
+ this.getaddress()
256
+ // this.$refs.paged.$refs.cri.model.f_user_state=['正常']
257
+ readySomething(this).then(() => {
258
+ this.$emit('ready')
259
+ }).catch((error) => {
260
+ this.$emit('error', error)
261
+ })
262
+ //this.initAreas(this.$login.f.orgid)
263
+ //self.$refs.paged.$refs.cri.model.startDate = self.$login.toStandardDateString()
264
+ //self.$refs.paged.$refs.cri.model.endDate = self.$login.toStandardDateString()
265
+ this.getJfnf();
266
+ },
267
+ methods: {
268
+ async getinputtores () {
269
+ // 获取抄表员
270
+ let rs = []
271
+ if (this.$login.f.f_gasman.length > 0) {
272
+ for (let i = 0; i < this.$login.f.f_gasman.length; i++) {
273
+ let temp = {
274
+ label: this.$login.f.f_gasman[i].name,
275
+ value: this.$login.f.f_gasman[i].name
276
+ }
277
+ rs.push(temp)
278
+ }
279
+ }
280
+ this.inputtores = [{label: '全部', value: ''}, ...rs]
281
+ },
282
+ async updateParams() {
283
+ await this.$MagLoadParams.loadParam(this.f_filialeid)
284
+ this.inputtores = [];
285
+ this.inputtores.push({label: "全部", value: ""})
286
+ this.initSlice(this.f_filialeid)
287
+ if(this.allorgid!=null){
288
+ this.allorgid.forEach((res)=>{
289
+ this.inputtores = this.inputtores.concat(this.$MagGetSaleParam.getresinputtor(res));
290
+ })
291
+ }
292
+ },
293
+ async getJfnf(){
294
+ let HttpReset = new HttpResetClass()
295
+ var data = await HttpReset.load('POST', 'rs/sql/singleTable_Final', {
296
+ data: {
297
+ condition: 'a_yf like \'20%\'',
298
+ tablename: 'qn_jgq_xsjg_ws',
299
+ groupitem: 'left(a_yf,4)',
300
+ orderitem: 'a_yf',
301
+ items: 'left(a_yf,4) as a_yf'
302
+ }
303
+ }, {resolveMsg: null, rejectMsg: '获取失败!'})
304
+ let nameArr = [{label: '全部', value: ''}]
305
+ for (let row of data.data){
306
+ nameArr.push({label: row.a_yf, value: row.a_yf})
307
+ }
308
+ this.jfnfArray = nameArr
309
+ },
310
+
311
+ getotherfooter () {
312
+ // this.$refs.paged.$refs.cri.$refs.exports.otherData = [];
313
+ // this.$refs.paged.$refs.cri.$refs.exports.footerData = [];
314
+ this.other = [];
315
+ this.footer = [];
316
+ let exportdata = this.getCondition;
317
+ let otherInData = [];
318
+ otherInData.push(`导出时间: ${this.$login.toStandardTimeString()}`);
319
+ let footerData = [], exportfield = this.getExportField;
320
+ footerData.push("合计");
321
+ let self = this;
322
+ for (var field in self.sumsmodel) {
323
+ footerData.push(`${exportfield[field]}合计:${self.sumsmodel[field]}`);
324
+ }
325
+ this.footer.push(footerData);
326
+ this.other.push(otherInData);
327
+ },
328
+ async getaddress(){
329
+ console.log('开始获取小区')
330
+ let HttpReset = new HttpResetClass()
331
+ var data = await HttpReset.load('POST', 'rs/sql/manage_getarealist', {
332
+ data: {
333
+ condition: `1=1 and s.f_filialeid = '${this.$login.f.orgid}'`
334
+ }
335
+ }, {resolveMsg: null, rejectMsg: '获取小区失败!'})
336
+ console.log('小区',data)
337
+ let house = []
338
+ for (let row of data.data){
339
+ console.log('开始保存小区')
340
+ house.push({label: row.f_residential_area, value: row.f_residential_area})
341
+ }
342
+ this.residentialArea = house
343
+ },
344
+
345
+ //把数据库查询数据转换为下拉数据
346
+ calculate(rows){
347
+ let data = []
348
+ rows.forEach((row, n) => {
349
+ data[n] = {label: row.f_residential_area, value: row.id}
350
+ })
351
+ return data
352
+ },
353
+ search(){
354
+ console.log("=====search====")
355
+ //this.$refs.paged.$refs.cri.search()
356
+ this.$refs.paged.$refs.cri.search()
357
+ },
358
+ cancel(obj) {
359
+ console.log("=====cancel====" + obj)
360
+ this.show = false
361
+ },
362
+ showmsg(obj){
363
+ this.rowdata=obj
364
+ this.show=true
365
+ // let http = new HttpResetClass()
366
+ // http.load('POST','rs/sql/getUserMeter',{data: {condition: `f_userinfo_id ='${obj.f_userinfo_id}'`}},
367
+ // {resolveMsg: null, rejectMsg: null}).then((res) => {
368
+ // this.meterInfo = res.data})
369
+ // let http2 = new HttpResetClass()
370
+ // http2.load('POST','rs/sql/deviceQuery',{data: {condition: `f_userinfo_id ='${obj.f_userinfo_id}'`}},
371
+ // {resolveMsg: null, rejectMsg: null}).then((res) => {
372
+ // this.deviceInfo = res.data})
373
+
374
+ // this.f_userinfo_id=obj.f_userinfo_id
375
+ },
376
+ userTypeChange () {
377
+ this.gasproperties=[]
378
+ if(this.$refs.paged.$refs.cri.model !==null) {
379
+ this.$refs.paged.$refs.cri.model.f_gasproperties=''
380
+ this.gasproperties = this.$appdata.getParam(this.$refs.paged.$refs.cri.model.f_user_type[0])
381
+ }
382
+ else{
383
+ this.gasproperties =[{label: '全部', value: ''}]
384
+ }
385
+ },
386
+ //初始化片区
387
+ async initSlice (val) {
388
+ if (val) {
389
+ let getAllArea = await this.$resetpost('/rs/search', {
390
+ source: 'this.getParentByType($organization$).getAllChildrens().where(row.getType() == $zone$)',
391
+ userid: this.$login.f.id
392
+ }, {resolveMsg: null, rejectMsg: '获取片区出错!!!'})
393
+ let arr = getAllArea.data.filter((res) => {
394
+ return res.parentid == val
395
+ })
396
+ this.bookSlice = []
397
+ console.log('过滤之后的片区-------------------', arr)
398
+ arr.forEach((res) => {
399
+ this.bookSlice.push({label: res.name, value: res.name})
400
+ })
401
+ }
402
+ },
403
+ async initAreas (val) {
404
+
405
+ if (val) {
406
+ let getAllArea = await this.$resetpost('/rs/search', {
407
+ source: 'this.getParentByType($organization$).getAllChildrens().where(row.getType() == $zone$)',
408
+ userid: this.$login.f.id
409
+ }, {resolveMsg: null, rejectMsg: '获取片区出错!!!'})
410
+
411
+ let arr = getAllArea.data.filter((res) => {
412
+ return res.parentid == val
413
+ })
414
+ console.log('过滤之后的片区', arr)
415
+ this.sliceArea = []
416
+ arr.forEach((res) => {
417
+ this.sliceArea.push({label: res.name, value: res.name})
418
+ })
419
+ }
420
+ },
421
+ selfSearch(args) {
422
+ console.log('args', args)
423
+ console.log('this.orgCondtionStr', this.orgCondtionStr)
424
+ if (!this.orgCondtionStr) {
425
+ args.condition = `${args.condition}` + " and tr.f_orgid = " + this.$login.f.orgid
426
+ } else {
427
+ args.condition = `${args.condition}` + this.orgCondtionStr
428
+ }
429
+ this.condition2 = args.condition
430
+ this.model.search(args.condition, args.model)
431
+ this.sumsmodel = this.$refs.paged.$refs.grid.model.sums
432
+ console.log('合计字段', this.sumsmodel)
433
+ },
434
+ clear() {
435
+ Object.keys(this.$refs.paged.$refs.cri.model).forEach((key) => {
436
+ this.$refs.paged.$refs.cri.model[key] = []
437
+ })
438
+ },
439
+ hidden() {
440
+ this.criteriaShow = !this.criteriaShow
441
+ },
442
+ getRes(obj) {
443
+ this.orgCondtionStr = obj
444
+ },
445
+ stamp() {
446
+ this.all = false
447
+ //默认选择要打印的列
448
+ this.modelval = defaultPrint.config
449
+ this.fields = this.getfield
450
+ console.log('所有打印字段', this.fields)
451
+ this.printshow = true
452
+ this.put()
453
+ },
454
+ put() {
455
+ // 对Modelval进行排序
456
+ this.sortModelval()
457
+ this.thead = `<tr><th colspan=${this.modelval.length}>用户查询统计报表</th></tr><tr>`
458
+ for (let key of this.modelval) {
459
+ this.thead += '<th>' + this.fields[key] + '</th>'
460
+ }
461
+ this.thead += '</tr>'
462
+ },
463
+ print() {
464
+ this.$refs.print.PrintAsFile()
465
+ this.printshow = false
466
+ },
467
+ close() {
468
+ this.printshow = false
469
+ },
470
+ // 对选择的列进行排序
471
+ sortModelval() {
472
+ let sortModel = []
473
+ Object.keys(this.fields).forEach((key) => {
474
+ if (this.modelval.includes(key)) {
475
+ sortModel.push(key)
476
+ }
477
+ })
478
+ this.modelval = sortModel
479
+ console.log('选择的打印的字段', this.modelval)
480
+ },
481
+ dblclick(row, index) {
482
+ console.log('双击之后数据', row, index)
483
+ this.userdetail.show = true
484
+ this.userdetail.f_userinfo_code = row.f_userinfo_code
485
+ this.userdetail.f_filialeids = row.f_filialeids
486
+ },
487
+ sort (field, rule) {
488
+ // 将所有排序方式设为不排序,实现相互排斥
489
+ for (let key in this.orderFields) {
490
+ if (key === field) {
491
+ this.orderFields[key] = rule
492
+ } else {
493
+ this.orderFields[key] = 'no'
494
+ }
495
+ }
496
+ // 如果新规则不排序,还原为默认排序
497
+ if (rule === 'no') {
498
+ this.model.paramSource.orderitem = `'${this.orderitem}'`
499
+ } else {
500
+ this.model.paramSource.orderitem = `'${field} ${rule}'`
501
+ }
502
+
503
+ this.search()
504
+ }
505
+ },
506
+
507
+ watch: {
508
+ 'all'(val) {
509
+ if (val) {
510
+ this.modelval = this.bodyData
511
+ } else {
512
+ this.modelval = defaultPrint.config
513
+ this.put()
514
+ }
515
+ },
516
+ 'modelval.length'() {
517
+ this.put()
518
+ },
519
+ sumsmodel:{
520
+ handler: function(val) {
521
+ this.getotherfooter();
522
+ },
523
+ deep: true
524
+ },
525
+ 'orgCondtionStr'(val) {
526
+ let res = val.match(/'(.*?)'/)
527
+ console.log('正则提取:',res && res[1])
528
+ if (res) {
529
+ this.f_filialeid = res[1]
530
+ if(res.input !=null){
531
+ let resorgid = res.input.substring(res.input.indexOf("'"));
532
+ if(resorgid!= null && resorgid!=''){
533
+ resorgid = resorgid.substring(0,resorgid.lastIndexOf("'")+1);
534
+ // resorgid = resorgid.replaceAll("'","");
535
+ resorgid = resorgid.replace(/'/g,"");
536
+ this.allorgid = resorgid.split(",")
537
+ }
538
+ }
539
+ this.updateParams()
540
+ }
541
+ },
542
+ },
543
+ computed: {
544
+ // defaultexport() {
545
+ // return exportConfig.chargeexportConfig
546
+ // },
547
+ authArr () {
548
+ return this.$login.r ? this.$login.r : []
549
+ },
550
+
551
+ getCondition() {
552
+ return {condition: this.condition2,orderitem:this.orderitem}
553
+ },
554
+ getfield() {
555
+ let data = {}
556
+ this.bodyData.forEach((value, index) => {
557
+ data[this.bodyData[index]] = this.headData[index]
558
+ })
559
+ //合计字段打印
560
+ this.tfoot = `<tr><th colspan=${this.modelval.length}>全表汇总信息: `
561
+ if (this.sumsmodel) {
562
+ Object.keys(this.sumsmodel).forEach((key) => {
563
+ this.tfoot += this.fields[key] + '合计: ' + `<font color="blue">${this.sumsmodel[key]} </font>`
564
+ })
565
+ } else {
566
+ this.tfoot += '暂无'
567
+ }
568
+ this.tfoot += '</th></tr>'
569
+ return data
570
+ },
571
+ getExportField() {
572
+ return exportConfig.qnJgqXsjgbbWs
573
+ },
574
+ inputtor () {
575
+ // 获取抄表员
576
+ console.log('获取抄表员', this.$login.f)
577
+ let rs = []
578
+ if (this.$login.f.f_gasman.length > 0) {
579
+ for (let i = 0; i < this.$login.f.f_gasman.length; i++) {
580
+ let temp = {
581
+ label: this.$login.f.f_gasman[i].name,
582
+ value: this.$login.f.f_gasman[i].name
583
+ }
584
+ rs.push(temp)
585
+ }
586
+ }
587
+
588
+ return [{label: '全部', value: ''}, ...rs]
589
+ },
590
+ userstates() {
591
+ return [{label: '全部', value: ''}, ...this.$appdata.getParam('客户状态')]
592
+ },
593
+ userLevels () {
594
+ return [{label: '全部', value: ''}, ...this.$appdata.getParam('用户等级')]
595
+ },
596
+ usertypes () {
597
+ return [{label: '全部', value: ''}, ...this.$appdata.getParam('用户类型')]
598
+ },
599
+ hairpin() {
600
+ return [{label: '全部', value: ''}, ...this.$appdata.getParam('发卡状态')]
601
+ },
602
+ addressstate() {
603
+ return [{label: '全部', value: ''}, ...this.$appdata.getParam('地址状态')]
604
+ },
605
+ fcalculation() {
606
+ return [{label: ' 全部 ', value: ''}, ...this.$appdata.getParam('结算方式')]
607
+ },
608
+ metertypes() {
609
+ return [{label: ' 全部 ', value: ''}, ...this.$appdata.getParam('气表类型')]
610
+ },
611
+ accountsState() {
612
+ return [{label: '全部', value: ''}, ...this.$appdata.getParam('下账状态')]
613
+ }
614
+ }
615
+ }
616
+ </script>
617
+ <style>
618
+ .back-red{ /* 红色背景 */
619
+ background-color: #F6C6CE;
620
+ }
621
+ .back-blue{ /* 蓝色背景 */
622
+
623
+ }
624
+ </style>
@@ -153,6 +153,11 @@ export default{
153
153
  'a_yf':'月份','b_hjql':'合计气量','c_hjhs':'合计户数','d_gyql':'工业气量','e_gyhs':'工业户数','f_syql':'商业气量','g_syhs':'商业户数',
154
154
  'h_xxql':'学校气量','i_xxhs':'学校户数','j_jmql':'居民气量','k_jmhs':'居民户数'
155
155
  },
156
+ qnJgqXsjgbbWs:{
157
+ 'a_yf':'月份','b_myhs':'民用户数','c_myql':'民用气量','d_mymgqhs':'民用煤改气户数','e_mymgqql':'民用煤改气气量','f_myqlxj':'民用气量小计',
158
+ 'g_gyhs':'工业户数','h_gyql':'工业气量','i_gfhs':'公福户数','j_gfql':'公福气量','k_syhs':'商业户数','l_syql':'商业气量','m_qlhj':'气量合计',
159
+ 'n_my':'民用','o_gy':'工业','p_gf':'公福','q_sy':'商业','r_hj':'合计'
160
+ },
156
161
  qnJgqYhsbb:{
157
162
  'a_yd':'月度','b_gy':'工业','c_sy':'商业','d_yy':'医院','e_yey':'幼儿园','f_yl':'养老','g_xx':'学校','h_jm':'居民户','i_bgl':'壁挂炉','j_xj':'小计'
158
163
  },