manage-client 3.3.236 → 3.3.238
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/filiale/kelai/WebmeterQuery.vue +77 -0
- package/src/filiale/qingtongxia/RecordInfoQuery.vue +2 -0
- package/src/filiale/qingtongxia/config/exportConfig.js +1 -1
- package/src/filiale/yangchun/HandplanQuery.vue +1444 -0
- package/src/filiale/yangchun/config/exportConfig.js +1616 -425
- package/src/filiale/yangchun/sale.js +4 -0
package/package.json
CHANGED
|
@@ -0,0 +1,77 @@
|
|
|
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>
|
|
@@ -386,6 +386,7 @@
|
|
|
386
386
|
|
|
387
387
|
<th><nobr>抄表册顺序</nobr></th>
|
|
388
388
|
<th><nobr>表剩余金额</nobr></th>
|
|
389
|
+
<th><nobr>用户系统余额</nobr></th>
|
|
389
390
|
<!-- <th><nobr>首次购气日期</nobr></th>-->
|
|
390
391
|
<th><nobr>写卡次数</nobr></th>
|
|
391
392
|
<th><nobr>补卡次数</nobr></th>
|
|
@@ -487,6 +488,7 @@
|
|
|
487
488
|
|
|
488
489
|
<td style="text-align: center;"><nobr>{{row.f_meter_book_sort}}</nobr></td>
|
|
489
490
|
<td style="text-align: center;"><nobr>{{row.f_balance_amount}}</nobr></td>
|
|
491
|
+
<td style="text-align: center;"><nobr>{{row.f_sys_balance}}</nobr></td>
|
|
490
492
|
<!-- <td style="text-align: center;"><nobr>{{row.f_min_operate_date}}</nobr></td>-->
|
|
491
493
|
<td style="text-align: center;"><nobr>{{row.f_times}}</nobr></td>
|
|
492
494
|
<td style="text-align: center;"><nobr>{{row.f_fillcard_times}}</nobr></td>
|
|
@@ -137,7 +137,7 @@ export default{
|
|
|
137
137
|
'f_book_inputtor': '档案抄表员',
|
|
138
138
|
'f_install_person': '安装人', 'f_gas_person': '通气人',
|
|
139
139
|
'f_meter_book_num': '抄表册编号', 'f_meter_book_sort': '抄表册顺序',
|
|
140
|
-
'f_balance_amount': '表剩余金额', 'f_times': '写卡次数',
|
|
140
|
+
'f_balance_amount': '表剩余金额', 'f_sys_balance': '用户系统余额', 'f_times': '写卡次数',
|
|
141
141
|
'f_fillcard_times': '补卡次数', 'f_sendsuccess': '表同步状态', 'f_isband': '微信绑定', 'f_cost_type': '缴费类型'
|
|
142
142
|
, 'f_bank_accopen': '银行户名', 'f_bank_name': '银行名称', 'f_bank_account': '银行账号',
|
|
143
143
|
'f_bank_idnumber': '银行身份证号', 'f_bank_pay_number': '缴费编号', 'f_userfiles_address': '用气点名'
|