manage-client 3.2.209 → 3.2.210
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 +190 -193
- package/package.json +1 -1
- package/src/filiale/WEINAN/CancellationQuery.vue +44 -2
- package/src/filiale/WEINAN/UserAddress.vue +655 -0
- package/src/filiale/WEINAN/UserAddressChange.vue +58 -0
- package/src/filiale/WEINAN/sale.js +5 -1
- package/src/filiale/qianneng/OtherChargeQuery.vue +10 -1
- package/src/filiale/qianneng/WebHandplanQuery.vue +1051 -0
- package/src/filiale/qianneng/WebmeterQuery.vue +70 -0
- package/src/filiale/qianneng/exportConfig.js +10 -1
- package/src/filiale/qianneng/webmeterManage.js +4 -1
- package/src/filiale/rizhao/ChargeQuery.vue +3 -3
- package/src/filiale/shangluo/UserQuery.vue +932 -0
- package/src/filiale/shangluo/sale.js +11 -0
- package/src/filiale/shanxian/InspectListUserNew.vue +466 -0
- package/src/filiale/shanxian/InspectManage.vue +50 -0
- package/src/filiale/shanxian/sale.js +3 -1
|
@@ -0,0 +1,70 @@
|
|
|
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="permission('用气查询')">
|
|
28
|
+
<use-gas-statistics v-if="show.includes('用气查询')"></use-gas-statistics>
|
|
29
|
+
</tabs>
|
|
30
|
+
<tabs header="未用气查询" v-if="permission('未用气查询')">
|
|
31
|
+
<get-no-meteread-query v-if="show.includes('未用气查询')"></get-no-meteread-query>
|
|
32
|
+
</tabs>
|
|
33
|
+
<tabs header="物联网表抄表查询" v-if="permission('物联网表抄表查询')">
|
|
34
|
+
<web-handplan-query v-if="show.includes('物联网表抄表查询')" @deal-msg="dealMsg" :data="data"></web-handplan-query>
|
|
35
|
+
</tabs>
|
|
36
|
+
<tabs header="物联网表结算分析" v-if="permission('物联网表结算分析')">
|
|
37
|
+
<webmeter-settlement-analysis v-if="show.includes('物联网表结算分析')"></webmeter-settlement-analysis>
|
|
38
|
+
</tabs>
|
|
39
|
+
</tab-button>
|
|
40
|
+
|
|
41
|
+
</template>
|
|
42
|
+
|
|
43
|
+
<script>
|
|
44
|
+
import TabButton from '../../components/sale/common/TabButton'
|
|
45
|
+
import Tabs from '../../components/sale/common/Tabs'
|
|
46
|
+
|
|
47
|
+
export default {
|
|
48
|
+
title: '物联查询',
|
|
49
|
+
data () {
|
|
50
|
+
return {
|
|
51
|
+
show: []
|
|
52
|
+
}
|
|
53
|
+
},
|
|
54
|
+
components: {Tabs, TabButton},
|
|
55
|
+
methods: {
|
|
56
|
+
permission (name) {
|
|
57
|
+
// 保留是为了后面可能也会和综合查询一样加权限
|
|
58
|
+
if (this.$login.r.find(value => value === '物联查询') || name === '历史指令查询') {
|
|
59
|
+
if (!this.$login.r.find(value => value === name)) {
|
|
60
|
+
return false
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
return true
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
</script>
|
|
68
|
+
|
|
69
|
+
<style scoped>
|
|
70
|
+
</style>
|
|
@@ -61,6 +61,15 @@ export default{
|
|
|
61
61
|
'f_stair2amount': '二阶气量', 'f_stair2price': '二阶单价', 'f_stair2fee': '二阶气费',
|
|
62
62
|
'f_stair3amount': '三阶气量', 'f_stair3price': '三阶单价', 'f_stair3fee': '三阶气费', 'f_rest_date': '所属年月'
|
|
63
63
|
},
|
|
64
|
+
webhandplanConfig: {
|
|
65
|
+
'f_userinfo_code': '客户编号', 'f_user_name': '客户名称', 'f_olduserinfo_code': '档案编号', 'f_address': '客户地址', 'f_zones': '片区', 'phone': '客户手机',
|
|
66
|
+
'f_last_tablebase': '上期底数', 'f_tablebase': '本期底数', 'f_oughtamount': '用气量', 'f_oughtfee': '用气金额','f_meternumber': '表号', 'ym_data': '数据年月',
|
|
67
|
+
'f_balance': '上期余额', 'f_curbalance': '本期余额', 'f_newbalance': '账户支出', 'f_newcurbalance': '账户存入', 'f_sellinggas_operate_date': '收费时间',
|
|
68
|
+
'f_hand_date': '下发日期', 'f_input_date': '录入日期', 'f_meter_state': '抄表状态', 'f_hand_state': '记录状态','f_inputtor': '抄表员', 'f_book_slice_area': '表册片区',
|
|
69
|
+
'f_user_type': '客户类型', 'f_gasproperties': '用气性质', 'f_operator': '操作员', 'f_depname': '部门', 'f_orgname': '公司',
|
|
70
|
+
'f_stair1amount': '一阶气量', 'f_stair1price': '一阶单价', 'f_stair1fee': '一阶气费','f_stair2amount': '二阶气量', 'f_stair2price': '二阶单价', 'f_stair2fee': '二阶气费',
|
|
71
|
+
'f_stair3amount': '三阶气量','f_stair3price': '三阶单价', 'f_stair3fee': '三阶气费', 'belongmonth': '所属年月'
|
|
72
|
+
},
|
|
64
73
|
gaslossConfig: {
|
|
65
74
|
'f_userinfo_code': '客户编号', 'f_olduserinfo_code': '档案编号', 'f_charge_person': '缴费人', 'f_charge_phone': '缴费人电话',
|
|
66
75
|
'f_charge_address': '缴费人地址', 'f_collection': '缴费金额', 'f_payment': '付款方式', 'f_bill_style': '打印格式',
|
|
@@ -77,7 +86,7 @@ export default{
|
|
|
77
86
|
'f_meter_brand': '气表品牌', 'f_bill_number': '收据票号', 'f_brand_spec': '收费类型', 'f_typename': '品名规格',
|
|
78
87
|
'f_typenumber': '型号', 'f_unitprice': '单价', 'f_number': '数量', 'f_money': '应收',
|
|
79
88
|
'f_collection': '收款', 'f_newbalance': '支出', 'f_newcurbalance': '收入', 'f_payment': '付款方式', 'f_state': '状态',
|
|
80
|
-
'f_operate_date': '收费日期', 'f_service_person': '服务人员', 'f_comments': '备注',
|
|
89
|
+
'f_old_overdue': '违约金', 'f_operate_date': '收费日期', 'f_service_person': '服务人员', 'f_comments': '备注',
|
|
81
90
|
'f_operator': '操作员', 'f_depname': '部门', 'f_orgname': '公司'
|
|
82
91
|
},
|
|
83
92
|
userConfig: { 'f_userinfo_code': '客户编号', 'f_user_name': '客户名称', 'f_olduserinfo_code': '档案编号', 'f_enter_number': '入户证号',
|
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
// 分公司特殊组件页面注册
|
|
2
2
|
let specialComp = {
|
|
3
|
-
'use-gas-statistics': (resolve) => { require(['./GasStatistics'], resolve) }
|
|
3
|
+
'use-gas-statistics': (resolve) => { require(['./GasStatistics'], resolve) },
|
|
4
|
+
'webmeter-query': (resolve) => { require(['./WebmeterQuery'], resolve) },
|
|
5
|
+
'web-handplan-query': (resolve) => { require(['./WebHandplanQuery'], resolve) },
|
|
6
|
+
|
|
4
7
|
}
|
|
5
8
|
exports.specialComp = specialComp
|
|
6
9
|
|
|
@@ -737,9 +737,9 @@
|
|
|
737
737
|
<td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;font-weight: bold">
|
|
738
738
|
燃气费合计: {{sumsmodel.f_preamount}}
|
|
739
739
|
</td>
|
|
740
|
-
<td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;font-weight: bold"
|
|
741
|
-
预存金额合计: {{sumsmodel.f_yucun}}
|
|
742
|
-
</td
|
|
740
|
+
<!-- <td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;font-weight: bold">-->
|
|
741
|
+
<!-- 预存金额合计: {{sumsmodel.f_yucun}}-->
|
|
742
|
+
<!-- </td>-->
|
|
743
743
|
<td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;font-weight: bold">
|
|
744
744
|
收款合计: {{sumsmodel.f_collection}}
|
|
745
745
|
</td>
|