manage-client 3.2.159 → 3.2.160

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