manage-client 3.2.195 → 3.2.197

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