manage-client 3.3.238 → 3.3.239
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/package.json +1 -1
- package/src/components/sale/config/exportConfig.js +3 -1
- package/src/components/webmeter/report/ReportList.vue +12 -0
- package/src/filiale/qingtongxia/RecordInfoQuery.vue +2 -2
- package/src/filiale/qingtongxia/config/exportConfig.js +1 -1
- package/src/filiale/yangchun/ChangeMeterQuery.vue +6 -0
- package/src/filiale/yangchun/ChargeQuery.vue +1448 -0
- package/src/filiale/yangchun/HandplanQuery.vue +12 -0
- package/src/filiale/yangchun/config/exportConfig.js +7 -2
- package/src/filiale/yangchun/sale.js +8 -0
- package/src/filiale/kelai/WebmeterQuery.vue +0 -77
|
@@ -497,6 +497,12 @@
|
|
|
497
497
|
<th>
|
|
498
498
|
<nobr>公司</nobr>
|
|
499
499
|
</th>
|
|
500
|
+
<th>
|
|
501
|
+
<nobr>抵扣单价</nobr>
|
|
502
|
+
</th>
|
|
503
|
+
<th>
|
|
504
|
+
<nobr>抵扣金额</nobr>
|
|
505
|
+
</th>
|
|
500
506
|
<th>
|
|
501
507
|
<nobr>附件</nobr>
|
|
502
508
|
</th>
|
|
@@ -653,6 +659,12 @@
|
|
|
653
659
|
<td style="text-align: center;">
|
|
654
660
|
<nobr>{{ row.f_orgname }}</nobr>
|
|
655
661
|
</td>
|
|
662
|
+
<td style="text-align: center;">
|
|
663
|
+
<nobr>{{ row.f_gas_type }}</nobr>
|
|
664
|
+
</td>
|
|
665
|
+
<td style="text-align: center;">
|
|
666
|
+
<nobr>{{ row.f_current_deduct_amount }}</nobr>
|
|
667
|
+
</td>
|
|
656
668
|
<td style="text-align: center;">
|
|
657
669
|
<nobr>
|
|
658
670
|
<button class="button_search button_spacing width-60" @click.stop="$parent.$parent.$parent.view(row)">
|
|
@@ -252,7 +252,9 @@ export default {
|
|
|
252
252
|
'f_stair3fee': '三阶气费',
|
|
253
253
|
'f_inputtor': '抄表员',
|
|
254
254
|
'f_residential_area': '小区',
|
|
255
|
-
'f_serial_number': '业务单号'
|
|
255
|
+
'f_serial_number': '业务单号',
|
|
256
|
+
'f_gas_type': '抵扣单价',
|
|
257
|
+
'f_current_deduct_amount': '抵扣金额'
|
|
256
258
|
},
|
|
257
259
|
loginQueryConfig: {
|
|
258
260
|
'userid': '登录人编号', 'username': '登录人名称', 'logindate': '登录时间', 'type': '类型'
|
|
@@ -664,6 +666,7 @@ export default {
|
|
|
664
666
|
'f_changemeter_fee': '换表费',
|
|
665
667
|
'f_meternumber_old': '旧表号',
|
|
666
668
|
'f_meternumber': '新表号',
|
|
669
|
+
'f_meter_base_old': '旧表底数',
|
|
667
670
|
'f_initial_base': '新表初始底数',
|
|
668
671
|
'f_meter_brand_old': '旧气表品牌',
|
|
669
672
|
'f_meter_brand': '新气表品牌',
|
|
@@ -835,7 +838,9 @@ export default {
|
|
|
835
838
|
'f_stair3amount': '三阶气量',
|
|
836
839
|
'f_stair3price': '三阶单价',
|
|
837
840
|
'f_stair3fee': '三阶气费',
|
|
838
|
-
'f_rest_date': '所属年月'
|
|
841
|
+
'f_rest_date': '所属年月',
|
|
842
|
+
'f_gas_type': '抵扣单价',
|
|
843
|
+
'f_current_deduct_amount': '抵扣金额'
|
|
839
844
|
},
|
|
840
845
|
handplanInfoConfig: {
|
|
841
846
|
'f_userinfo_code': '用户号',
|
|
@@ -21,4 +21,12 @@ export default function () {
|
|
|
21
21
|
Vue.component('handplan-query', (resolve) => {
|
|
22
22
|
require(['./HandplanQuery'], resolve)
|
|
23
23
|
})
|
|
24
|
+
// 换表查询
|
|
25
|
+
Vue.component('change-meter-query', (resolve) => {
|
|
26
|
+
require(['./ChangeMeterQuery'], resolve)
|
|
27
|
+
})
|
|
28
|
+
// 收费查询
|
|
29
|
+
Vue.component('charge-query', (resolve) => {
|
|
30
|
+
require(['./ChargeQuery'], resolve)
|
|
31
|
+
})
|
|
24
32
|
}
|
|
@@ -1,77 +0,0 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<tab-button class="foot_tabset" :active="-1">
|
|
3
|
-
<tabs header="指令查询" v-if="permission('指令查询')">
|
|
4
|
-
<instruct-manage v-if="show.includes('指令查询')"></instruct-manage>
|
|
5
|
-
</tabs>
|
|
6
|
-
<tabs header="历史指令查询" v-if="permission('历史指令查询')">
|
|
7
|
-
<instruct-manage-history v-if="show.includes('历史指令查询')"></instruct-manage-history>
|
|
8
|
-
</tabs>
|
|
9
|
-
<tabs header="上报查询" v-if="permission('上报查询')">
|
|
10
|
-
<report-list v-if="show.includes('上报查询')"></report-list>
|
|
11
|
-
</tabs>
|
|
12
|
-
<tabs header="结算查询" v-if="permission('结算查询')">
|
|
13
|
-
<report-data-query v-if="show.includes('结算查询')"></report-data-query>
|
|
14
|
-
</tabs>
|
|
15
|
-
<tabs header="缴费查询" v-if="permission('缴费查询')">
|
|
16
|
-
<recharge-instruct-query v-if="show.includes('缴费查询')"></recharge-instruct-query>
|
|
17
|
-
</tabs>
|
|
18
|
-
<tabs header="异常查询" v-if="permission('异常查询')">
|
|
19
|
-
<meter-exception-list v-if="show.includes('异常查询')"></meter-exception-list>
|
|
20
|
-
</tabs>
|
|
21
|
-
<tabs header="用户失联" v-if="permission('用户失联')">
|
|
22
|
-
<user-lost-contact-analysis v-if="show.includes('用户失联')"></user-lost-contact-analysis>
|
|
23
|
-
</tabs>
|
|
24
|
-
<tabs header="失联查询" v-if="permission('失联查询')">
|
|
25
|
-
<lost-contact-analysis-list v-if="show.includes('失联查询')"></lost-contact-analysis-list>
|
|
26
|
-
</tabs>
|
|
27
|
-
<tabs header="用气查询" v-if="!newWebHand && permission('用气查询')">
|
|
28
|
-
<use-gas-statistics v-if="show.includes('用气查询')"></use-gas-statistics>
|
|
29
|
-
</tabs>
|
|
30
|
-
<tabs header="新用气查询" v-if="permission('用气查询')">
|
|
31
|
-
<new-use-gas-statistics v-if="show.includes('用气查询')"></new-use-gas-statistics>
|
|
32
|
-
</tabs>
|
|
33
|
-
<tabs header="未用气查询" v-if="permission('未用气查询')">
|
|
34
|
-
<get-no-meteread-query v-if="show.includes('未用气查询')"></get-no-meteread-query>
|
|
35
|
-
</tabs>
|
|
36
|
-
<tabs header="物联网表结算分析" v-if="!newWebHand && permission('物联网表结算分析')">
|
|
37
|
-
<webmeter-settlement-analysis v-if="show.includes('物联网表结算分析')"></webmeter-settlement-analysis>
|
|
38
|
-
</tabs>
|
|
39
|
-
<tabs header="物联网表结算分析" v-if="newWebHand &&permission('物联网表结算分析')">
|
|
40
|
-
<new-webmeter-settlement-analysis v-if="show.includes('物联网表结算分析')"></new-webmeter-settlement-analysis>
|
|
41
|
-
</tabs>
|
|
42
|
-
<tabs header="物联用户月度结算查询" v-if="permission('物联用户月度结算查询')">
|
|
43
|
-
<webhand-month-gas v-if="show.includes('物联用户月度结算查询')"></webhand-month-gas>
|
|
44
|
-
</tabs>
|
|
45
|
-
</tab-button>
|
|
46
|
-
|
|
47
|
-
</template>
|
|
48
|
-
|
|
49
|
-
<script>
|
|
50
|
-
import TabButton from '../../components/sale/common/TabButton'
|
|
51
|
-
import Tabs from '../../components/sale/common/Tabs'
|
|
52
|
-
|
|
53
|
-
export default {
|
|
54
|
-
title: '物联查询',
|
|
55
|
-
data () {
|
|
56
|
-
return {
|
|
57
|
-
newWebHand: this.$appdata.getSingleValue('新抄表'),
|
|
58
|
-
show: []
|
|
59
|
-
}
|
|
60
|
-
},
|
|
61
|
-
components: {Tabs, TabButton},
|
|
62
|
-
methods: {
|
|
63
|
-
permission (name) {
|
|
64
|
-
// 保留是为了后面可能也会和综合查询一样加权限
|
|
65
|
-
if (this.$login.r.find(value => value === '物联查询') || name === '历史指令查询') {
|
|
66
|
-
if (!this.$login.r.find(value => value === name)) {
|
|
67
|
-
return false
|
|
68
|
-
}
|
|
69
|
-
}
|
|
70
|
-
return true
|
|
71
|
-
}
|
|
72
|
-
}
|
|
73
|
-
}
|
|
74
|
-
</script>
|
|
75
|
-
|
|
76
|
-
<style scoped>
|
|
77
|
-
</style>
|