manage-client 3.2.140 → 3.2.144
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 +2 -2
- package/package.json +1 -1
- package/src/components/SellReport/Cardapplysgas.vue +274 -0
- package/src/components/SellReport/LeftChart.vue +132 -0
- package/src/components/SellReport/MarketMonthChart.vue +162 -0
- package/src/components/SellReport/MarketMonthgas.vue +7 -0
- package/src/components/SellReport/UserFillmoney.vue +1 -1
- package/src/components/sale/businessquery/AccountQuery/AccountListManage.vue +2 -2
- package/src/components/sale/businessquery/AccountQuery/OverdueList.vue +4 -4
- package/src/components/sale/businessquery/AccountQuery/keyUserGasRanking.vue +165 -0
- package/src/components/sale/businessquery/ArrearsQuery.vue +2 -2
- package/src/components/sale/businessquery/ChargeQuery.vue +2 -2
- package/src/components/sale/businessquery/CollectManage.vue +6 -0
- package/src/components/sale/businessquery/GroupChargeQuery.vue +2 -2
- package/src/components/sale/businessquery/HandplanQuery.vue +1 -1
- package/src/components/sale/businessquery/InspectListGas.vue +238 -246
- package/src/components/sale/businessquery/ProceedsOper.vue +4 -4
- package/src/components/sale/businessquery/ResidentialCardQuery.vue +373 -0
- package/src/components/sale/businessquery/SellOrgnameQuery.vue +2 -2
- package/src/components/sale/businessquery/SellPeopleQuery.vue +2 -2
- package/src/components/sale/businessquery/UserSellHeadDetail.vue +4 -4
- package/src/components/sale/config/exportConfig.js +14 -14
- package/src/components/sale/filesquery/MeterQuery.vue +21 -1
- package/src/components/sale/filesquery/RecordInfoQuery.vue +16 -0
- package/src/components/sale/filesquery/UserQuery.vue +6 -0
- package/src/components/sale/filesquery/filequerydetail/ChargeQueryDetail.vue +1 -1
- package/src/components/webmeter/DrillData/LostContactAnalysisList.vue +2 -1
- package/src/components/webmeter/DrillData/UserGasEform.vue +1 -1
- package/src/components/webmeter/DrillData/UserLostContactAnalysis.vue +2 -1
- package/src/components/webmeter/recharge/RechargeList.vue +1 -1
- package/src/filiale/WEINAN/manage/ChangeMeterQuery.vue +26 -26
- package/src/filiale/dongguan/components/SellReport/BankManager.vue +146 -0
- package/src/filiale/dongguan/components/SellReport/SiteManager.vue +147 -0
- package/src/filiale/dongguan/components/WebReport/BussinessType.vue +137 -0
- package/src/filiale/dongguan/components/WebReport/Paymentpie.vue +157 -0
- package/src/filiale/dongguan/reportManage.js +21 -0
- package/src/filiale/qianneng/ArrearsQuery.vue +2 -2
- package/src/filiale/qianneng/ChargeQuery.vue +2 -2
- package/src/filiale/qianneng/HandplanQuery.vue +1 -1
- package/src/filiale/qianneng/MeterQuery.vue +21 -1
- package/src/filiale/qianneng/exportConfig.js +3 -3
- package/src/filiale/rongcheng/RecordInfoQuery.vue +1 -1
- package/src/filiale/rongcheng/exportConfig.js +2 -2
- package/src/reportManage.js +10 -0
- package/src/saleManage.js +6 -0
- package/.gradle/4.4/fileContent/fileContent.lock +0 -0
- package/.gradle/4.4/taskHistory/taskHistory.bin +0 -0
- package/.gradle/buildOutputCleanup/outputFiles.bin +0 -0
- package/build/libs/ManageClient-3.1.0-17.jar +0 -0
- package/build/tmp/jar/MANIFEST.MF +0 -2
|
@@ -0,0 +1,157 @@
|
|
|
1
|
+
<template lang="html">
|
|
2
|
+
<div id="charts">
|
|
3
|
+
<div id="pp" :style="{width:'100%',height:'98%'}"></div>
|
|
4
|
+
</div>
|
|
5
|
+
</template>
|
|
6
|
+
|
|
7
|
+
<script>
|
|
8
|
+
import * as Util from '../../../../Util'
|
|
9
|
+
import co from 'co'
|
|
10
|
+
import echarts from 'echarts'
|
|
11
|
+
import { HttpResetClass } from 'vue-client'
|
|
12
|
+
|
|
13
|
+
let getData = function * (self) {
|
|
14
|
+
let load = new HttpResetClass()
|
|
15
|
+
|
|
16
|
+
load.load('POST','rs/sql/sellinggasvalue',
|
|
17
|
+
{data: {startDate: self.startdate, endDate: self.enddate,key:'f_payment',f_orgid:self.orgid}},
|
|
18
|
+
{resolveMsg: null, rejectMsg: null})
|
|
19
|
+
.then((res) => {
|
|
20
|
+
let arrparams = []
|
|
21
|
+
let moneydata = []
|
|
22
|
+
let gasdata = []
|
|
23
|
+
for (var i = 0; i < res.data.length; i++) {
|
|
24
|
+
let item = {}
|
|
25
|
+
let item1={}
|
|
26
|
+
arrparams[i] = res.data[i].name
|
|
27
|
+
item.name = res.data[i].name
|
|
28
|
+
item.value = res.data[i].gas_value
|
|
29
|
+
gasdata.push(item)
|
|
30
|
+
item1.name = res.data[i].name
|
|
31
|
+
item1.value = res.data[i].money_value
|
|
32
|
+
moneydata.push(item1)
|
|
33
|
+
}
|
|
34
|
+
console.log("加载echars组件")
|
|
35
|
+
console.log(arrparams,gasdata)
|
|
36
|
+
self.set(arrparams,gasdata,moneydata)
|
|
37
|
+
})
|
|
38
|
+
}
|
|
39
|
+
export default {
|
|
40
|
+
props: {
|
|
41
|
+
startdate: {
|
|
42
|
+
type: String,
|
|
43
|
+
default: Util.toStandardDateString()
|
|
44
|
+
},
|
|
45
|
+
enddate: {
|
|
46
|
+
type: String,
|
|
47
|
+
default: Util.toStandardDateString()
|
|
48
|
+
},
|
|
49
|
+
orgid: {
|
|
50
|
+
type: String
|
|
51
|
+
}
|
|
52
|
+
},
|
|
53
|
+
data () {
|
|
54
|
+
return {
|
|
55
|
+
xc: ''
|
|
56
|
+
}
|
|
57
|
+
},
|
|
58
|
+
methods: {
|
|
59
|
+
|
|
60
|
+
set (arrparams,gasdata,moneydata) {
|
|
61
|
+
console.log("进入组件")
|
|
62
|
+
this.xc = echarts.init(document.getElementById('pp'))
|
|
63
|
+
this.xc.setOption({
|
|
64
|
+
title: [
|
|
65
|
+
{
|
|
66
|
+
text: '收费渠道汇总',
|
|
67
|
+
x: '0%',
|
|
68
|
+
y: '0%',
|
|
69
|
+
textStyle: {
|
|
70
|
+
color: '#010606',
|
|
71
|
+
fontSize: 18,
|
|
72
|
+
}
|
|
73
|
+
}, {
|
|
74
|
+
text: '气量分布',
|
|
75
|
+
x: '18%',
|
|
76
|
+
y: '18%',
|
|
77
|
+
textStyle: {
|
|
78
|
+
color: '#010606',
|
|
79
|
+
fontSize: 16,
|
|
80
|
+
}
|
|
81
|
+
},{
|
|
82
|
+
text: '金额分布',
|
|
83
|
+
x: '58%',
|
|
84
|
+
y: '18%',
|
|
85
|
+
textStyle: {
|
|
86
|
+
color: '#010606',
|
|
87
|
+
fontSize: 16,
|
|
88
|
+
}
|
|
89
|
+
}],
|
|
90
|
+
tooltip: {
|
|
91
|
+
trigger: 'item',
|
|
92
|
+
formatter: '{a} <br/>{b}: {c} ({d}%)'
|
|
93
|
+
},
|
|
94
|
+
legend: {
|
|
95
|
+
orient: 'horizontal',
|
|
96
|
+
icon: 'circle',
|
|
97
|
+
x: 'center',
|
|
98
|
+
y: '80%',
|
|
99
|
+
|
|
100
|
+
textStyle: {
|
|
101
|
+
padding: [0, 0, 0, 4],
|
|
102
|
+
color: '#010606'
|
|
103
|
+
},
|
|
104
|
+
data: arrparams
|
|
105
|
+
},
|
|
106
|
+
series : [
|
|
107
|
+
{
|
|
108
|
+
name: '',
|
|
109
|
+
type: 'pie',
|
|
110
|
+
radius: ['0%', '40%'],
|
|
111
|
+
center: ['25%', '50%'],
|
|
112
|
+
hoverAnimation: true,
|
|
113
|
+
minAngle: 15,//最小角度
|
|
114
|
+
startAngle: 60, //起始角度
|
|
115
|
+
label: {normal: {show:true,}},
|
|
116
|
+
labelLine: { normal: {show:true,}},
|
|
117
|
+
data: gasdata
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
name: '笔数',
|
|
121
|
+
type: 'pie',
|
|
122
|
+
radius: ['0%', '40%'],
|
|
123
|
+
center: ['65%', '50%'],
|
|
124
|
+
hoverAnimation: true,
|
|
125
|
+
minAngle: 15,//最小角度
|
|
126
|
+
startAngle: 60, //起始角度
|
|
127
|
+
label: {normal: {show:true,}},
|
|
128
|
+
labelLine: { normal: {show:true,}},
|
|
129
|
+
data: moneydata
|
|
130
|
+
}
|
|
131
|
+
]
|
|
132
|
+
|
|
133
|
+
},true)
|
|
134
|
+
|
|
135
|
+
},
|
|
136
|
+
searchdata () {
|
|
137
|
+
let getGen =getData(this);
|
|
138
|
+
co(getGen);
|
|
139
|
+
}
|
|
140
|
+
},
|
|
141
|
+
ready () {
|
|
142
|
+
this.searchdata()
|
|
143
|
+
},
|
|
144
|
+
watch: {
|
|
145
|
+
'startdate' (val) {
|
|
146
|
+
this.searchdata()
|
|
147
|
+
},
|
|
148
|
+
'enddate' (val) {
|
|
149
|
+
this.searchdata()
|
|
150
|
+
},
|
|
151
|
+
'orgid' (val) {
|
|
152
|
+
this.searchdata()
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
}
|
|
157
|
+
</script>
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
// 分公司特殊组件页面注册
|
|
2
|
+
import Vue from 'vue'
|
|
3
|
+
|
|
4
|
+
let specialComp = {
|
|
5
|
+
// 各管理站气量金额散列图
|
|
6
|
+
'site-manager': (resolve) => {
|
|
7
|
+
require(['./components/SellReport/SiteManager'], resolve)
|
|
8
|
+
},
|
|
9
|
+
// 银行代售气量金额散列图
|
|
10
|
+
'bank-manager': (resolve) => {
|
|
11
|
+
require(['./components/SellReport/BankManager'], resolve)
|
|
12
|
+
},
|
|
13
|
+
// 付款方式饼图
|
|
14
|
+
'paymentpie': (resolve) => {
|
|
15
|
+
require(['./components/WebReport/Paymentpie'], resolve)
|
|
16
|
+
},
|
|
17
|
+
'bussiness-type': (resolve) => {
|
|
18
|
+
require(['./components/WebReport/BussinessType'], resolve)
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
exports.specialComp = specialComp
|
|
@@ -325,7 +325,7 @@
|
|
|
325
325
|
<nobr>应交气费</nobr>
|
|
326
326
|
</th>
|
|
327
327
|
<th>
|
|
328
|
-
<nobr
|
|
328
|
+
<nobr>违约金</nobr>
|
|
329
329
|
</th>
|
|
330
330
|
<th>
|
|
331
331
|
<nobr>附加费</nobr>
|
|
@@ -465,7 +465,7 @@
|
|
|
465
465
|
气费金额合计: {{sumsmodel.f_oughtfee_new}}
|
|
466
466
|
</td>
|
|
467
467
|
<td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;font-weight: bold">
|
|
468
|
-
|
|
468
|
+
违约金合计: {{sumsmodel.overdue}}
|
|
469
469
|
</td>
|
|
470
470
|
<td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;font-weight: bold">
|
|
471
471
|
附加费合计: {{sumsmodel.f_garbage_fee}}
|
|
@@ -377,7 +377,7 @@
|
|
|
377
377
|
<nobr>金额</nobr>
|
|
378
378
|
</th>
|
|
379
379
|
<th>
|
|
380
|
-
<nobr
|
|
380
|
+
<nobr>违约金</nobr>
|
|
381
381
|
</th>
|
|
382
382
|
<!-- <th>-->
|
|
383
383
|
<!-- <nobr>燃气费</nobr>-->
|
|
@@ -733,7 +733,7 @@
|
|
|
733
733
|
应交金额合计: {{sumsmodel.fee}}
|
|
734
734
|
</td>
|
|
735
735
|
<td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;font-weight: bold">
|
|
736
|
-
|
|
736
|
+
违约金合计: {{sumsmodel.f_delaypay}}
|
|
737
737
|
</td>
|
|
738
738
|
<td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;font-weight: bold">
|
|
739
739
|
账户支出合计: {{sumsmodel.f_newbalance}}
|
|
@@ -198,6 +198,19 @@
|
|
|
198
198
|
condition="isbgl = '{}'"
|
|
199
199
|
close-on-select></v-select>
|
|
200
200
|
</div>
|
|
201
|
+
<div class="col-sm-2 form-group">
|
|
202
|
+
<label class="font_normal_body">自动阀控</label>
|
|
203
|
+
<v-select
|
|
204
|
+
placeholder='自动阀控'
|
|
205
|
+
|
|
206
|
+
:value.sync="model.f_network_valve"
|
|
207
|
+
style="width:60%"
|
|
208
|
+
v-model="model.f_network_valve"
|
|
209
|
+
:options='$parent.$parent.networkvalves'
|
|
210
|
+
close-on-select
|
|
211
|
+
condition="f_networkvalve='{}'">
|
|
212
|
+
</v-select>
|
|
213
|
+
</div>
|
|
201
214
|
<!--<div class="col-sm-2 form-group">-->
|
|
202
215
|
<!--<label class="font_normal_body" title="旧客户编号">档案编号</label>-->
|
|
203
216
|
<!--<input type="text" style="width:60%" class="input_search" v-model="model.f_olduserinfo_code"-->
|
|
@@ -379,6 +392,9 @@
|
|
|
379
392
|
<th>
|
|
380
393
|
<nobr>防盗卡号2</nobr>
|
|
381
394
|
</th>
|
|
395
|
+
<th>
|
|
396
|
+
<nobr>自动阀控</nobr>
|
|
397
|
+
</th>
|
|
382
398
|
</tr>
|
|
383
399
|
</template>
|
|
384
400
|
<template partial='body'>
|
|
@@ -475,6 +491,9 @@
|
|
|
475
491
|
<td :class="row.f_table_state !== '正常'? 'back-red' : 'back-blue'" style="text-align: center;">
|
|
476
492
|
<nobr>{{row.f_defendcard_two}}</nobr>
|
|
477
493
|
</td>
|
|
494
|
+
<td :class="row.f_table_state !== '正常'? 'back-red' : 'back-blue'" style="text-align: center;">
|
|
495
|
+
<nobr>{{row.f_networkvalve}}</nobr>
|
|
496
|
+
</td>
|
|
478
497
|
</template>
|
|
479
498
|
<template partial='foot'>
|
|
480
499
|
</template>
|
|
@@ -624,7 +643,8 @@
|
|
|
624
643
|
tempfalg :false,
|
|
625
644
|
lastorgstr:'',
|
|
626
645
|
issecond: [{label:'是',value:" = '二次挂表'"},{label:'否',value:" <> '二次挂表'"}],
|
|
627
|
-
usetype:this.$appdata.getParam('使用类型')
|
|
646
|
+
usetype:this.$appdata.getParam('使用类型'),
|
|
647
|
+
networkvalves: this.$appdata.getParam('自动阀控') ? [{label: '全部', value: ''}, ...this.$appdata.getParam('自动阀控')] : []
|
|
628
648
|
}
|
|
629
649
|
},
|
|
630
650
|
ready() {
|
|
@@ -6,7 +6,7 @@ export default{
|
|
|
6
6
|
'f_user_type': '客户类型', 'f_gasproperties': '用气性质', 'f_meter_classify': '气表类型',
|
|
7
7
|
'f_cost_type': '缴费类型', 'c': '欠费期数', 'f_hand_date': '欠费区间', 'f_last_tablebase': '上期抄表底数',
|
|
8
8
|
'f_tablebase': '本期抄表底数', 'f_oughtamount': '用气量', 'f_oughtfee': '用气金额', 'f_operate_date': '缴费时间',
|
|
9
|
-
'f_debt_money': '已交金额', 'f_oughtfee_new': '应交气费', 'overdue': '
|
|
9
|
+
'f_debt_money': '已交金额', 'f_oughtfee_new': '应交气费', 'overdue': '违约金', 'f_garbage_fee': '附加费',
|
|
10
10
|
'f_balance': '上期余额', 'f_oughtfee_all': '合计欠费', 'f_comments': '备注'
|
|
11
11
|
},
|
|
12
12
|
chargeConfig: {
|
|
@@ -14,14 +14,14 @@ export default{
|
|
|
14
14
|
'f_gasproperties': '用气性质', 'f_meternumber': '表号', 'f_meter_brand': '气表品牌', 'f_times': '购气次数',
|
|
15
15
|
'f_last_tablebase': '上期底数', 'f_tablebase': '本期底数', 'f_pregas': '气量', 'fee': '金额', 'f_preamount': '燃气费', 'f_collection': '收款', 'f_privilege_money': '优惠金额', 'f_balance': '上期结余', 'f_newbalance': '账户支出', 'f_newcurbalance': '账户存入',
|
|
16
16
|
'f_curbalance': '本期结余', 'f_type': '收费类型', 'f_payment': '付款方式', 'f_bank_type': '支付渠道', 'f_state': '状态', 'f_operate_date': '收费日期', 'f_serial_id': '流水号',
|
|
17
|
-
'f_delaypay': '
|
|
17
|
+
'f_delaypay': '违约金', 'f_comments': '备注', 'f_operator': '操作员', 'f_depname': '部门', 'f_orgname': '公司',
|
|
18
18
|
'f_yucun': '预存金额', 'f_card_id': '卡号', 'f_stairamount1': '一阶气量', 'f_stair1price': '一阶单价', 'f_stair1fee': '一阶气费',
|
|
19
19
|
'f_stair2amount': '二阶气量', 'f_stair2price': '二阶单价', 'f_stair2fee': '二阶气费',
|
|
20
20
|
'f_stair3amount': '三阶气量', 'f_stair3price': '三阶单价', 'f_stair3fee': '三阶气费', 'f_inputtor': '抄表员'
|
|
21
21
|
},
|
|
22
22
|
handplanConfig: {
|
|
23
23
|
'f_userinfo_code': '客户编号', 'f_user_name': '客户名称', 'f_olduserinfo_code': '档案编号', 'f_address': '客户地址', 'f_zones': '片区', 'phone': '客户手机', 'f_meternumber': '表号', 'ym_data': '数据年月',
|
|
24
|
-
'f_last_tablebase': '上期底数', 'f_tablebase': '本期底数', 'f_oughtamount': '用气量', 'overdue': '
|
|
24
|
+
'f_last_tablebase': '上期底数', 'f_tablebase': '本期底数', 'f_oughtamount': '用气量', 'overdue': '违约金', 'f_oughtfee': '用气金额', 'f_debt_money': '已交金额',
|
|
25
25
|
'f_actual_arrears': '欠费金额', 'f_balance': '上期余额', 'f_curbalance': '本期余额', 'f_newbalance': '账户支出', 'f_newcurbalance': '账户存入',
|
|
26
26
|
'f_accounts_state': '下账状态', 'f_sellinggas_operate_date': '收费时间', 'f_inputtor': '抄表员', 'f_book_slice_area': '表册片区',
|
|
27
27
|
'f_hand_date': '下发日期', 'f_input_date': '录入日期', 'f_audit_date': '审核日期', 'f_meter_state': '抄表状态', 'f_hand_state': '记录状态', 'f_end_date': '违约金起始时间',
|
|
@@ -516,7 +516,7 @@
|
|
|
516
516
|
<script>
|
|
517
517
|
import {HttpResetClass, PagedList} from 'vue-client'
|
|
518
518
|
import defaultPrint from './../../components/sale/config/DefaultPrint'
|
|
519
|
-
import exportConfig from '
|
|
519
|
+
import exportConfig from './exportConfig'
|
|
520
520
|
|
|
521
521
|
let readySomething = async function (self) {
|
|
522
522
|
self.initParams()
|
|
@@ -72,8 +72,8 @@ export default{
|
|
|
72
72
|
'f_total_fee': '表累购金额','f_meternumber': '表号','f_metertitles': '表封号','f_inputtor': '抄表员','f_position': '安装位置',
|
|
73
73
|
'f_userfiles_address': '安装地址','f_install_person': '安装人','f_install_date': '安装日期','f_gas_person': '通气人','f_gas_date': '通气日期',
|
|
74
74
|
'f_fire_state': '点火状态','f_valve_state': '阀门状态','f_meter_book_num': '抄表册编号','f_meter_book_sort': '抄表册顺序','f_card_id': '卡号',
|
|
75
|
-
'f_aroundmeter': '左右表','f_whether_hairpin': '是否发卡','f_balance_amount': '表剩余金额','
|
|
76
|
-
'f_fillcard_times': '补卡次数','
|
|
75
|
+
'f_aroundmeter': '左右表','f_whether_hairpin': '是否发卡','f_balance_amount': '表剩余金额','f_times': '写卡次数',
|
|
76
|
+
'f_fillcard_times': '补卡次数','f_hand_date': '最后抄表日期','f_sendsuccess': '表同步状态'
|
|
77
77
|
},
|
|
78
78
|
|
|
79
79
|
changemeterConfig: {
|
package/src/reportManage.js
CHANGED
|
@@ -599,6 +599,16 @@ export default function (filiale) {
|
|
|
599
599
|
Vue.component('market-month-gas', (resolve) => {
|
|
600
600
|
require(['./components/SellReport/MarketMonthgas'], resolve)
|
|
601
601
|
})
|
|
602
|
+
Vue.component('left-chart', (resolve) => {
|
|
603
|
+
require(['./components/SellReport/LeftChart'], resolve)
|
|
604
|
+
})
|
|
605
|
+
Vue.component('market-month-chart', (resolve) => {
|
|
606
|
+
require(['./components/SellReport/MarketMonthChart'], resolve)
|
|
607
|
+
})
|
|
608
|
+
// 卡表抄表气价报表
|
|
609
|
+
Vue.component('card-applys-gas', (resolve) => {
|
|
610
|
+
require(['./components/SellReport/Cardapplysgas'], resolve)
|
|
611
|
+
})
|
|
602
612
|
if (filiale) {
|
|
603
613
|
let filialeComp = require(`./filiale/${filiale}/reportManage`).specialComp
|
|
604
614
|
Vue.filialeInfo = Vue.prototype.$filialeInfo = filiale
|
package/src/saleManage.js
CHANGED
|
@@ -174,6 +174,10 @@ export default function (filiale) {
|
|
|
174
174
|
Vue.component('residential-query', (resolve) => {
|
|
175
175
|
require(['./components/sale/businessquery/ResidentialQuery'], resolve)
|
|
176
176
|
})
|
|
177
|
+
// 小区汇总(卡表)
|
|
178
|
+
Vue.component('residential-card-query', (resolve) => {
|
|
179
|
+
require(['./components/sale/businessquery/ResidentialCardQuery'], resolve)
|
|
180
|
+
})
|
|
177
181
|
// 小区欠费汇总(机表)
|
|
178
182
|
Vue.component('residential-arrears-query', (resolve) => {
|
|
179
183
|
require(['./components/sale/businessquery/ResidentialArrearsQuery'], resolve)
|
|
@@ -582,6 +586,8 @@ export default function (filiale) {
|
|
|
582
586
|
Vue.component('report-detail', (resolve) => { require(['./components/sale/businessquery/reportDetail'], resolve) })
|
|
583
587
|
// 分公司选择新组件,默认全选
|
|
584
588
|
Vue.component('res-select-new', (resolve) => { require(['./filiale/tongchuan/ResSelectNew'], resolve) })
|
|
589
|
+
// 重点用户用气排行查询
|
|
590
|
+
Vue.component('key-user-gas-ranking', (resolve) => { require(['./components/sale/businessquery/AccountQuery/keyUserGasRanking'], resolve) })
|
|
585
591
|
// 分公司特殊页面注册替换
|
|
586
592
|
if (filiale) {
|
|
587
593
|
let filialeComp = require(`./filiale/${filiale}/sale`).specialComp
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|