manage-client 3.2.142 → 3.2.145

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.
Files changed (40) hide show
  1. package/build/dev-server.js +1 -1
  2. package/package.json +1 -1
  3. package/src/components/SellReport/UserFillmoney.vue +1 -1
  4. package/src/components/sale/businessquery/AccountQuery/AccountListManage.vue +2 -2
  5. package/src/components/sale/businessquery/AccountQuery/OverdueList.vue +4 -4
  6. package/src/components/sale/businessquery/ArrearsQuery.vue +10 -10
  7. package/src/components/sale/businessquery/ChargeQuery.vue +2 -2
  8. package/src/components/sale/businessquery/GroupChargeQuery.vue +2 -2
  9. package/src/components/sale/businessquery/HandplanQuery.vue +1 -1
  10. package/src/components/sale/businessquery/InspectListGas.vue +238 -246
  11. package/src/components/sale/businessquery/ProceedsOper.vue +4 -4
  12. package/src/components/sale/businessquery/SellOrgnameQuery.vue +2 -2
  13. package/src/components/sale/businessquery/SellPeopleQuery.vue +2 -2
  14. package/src/components/sale/businessquery/UserSellHeadDetail.vue +4 -4
  15. package/src/components/sale/config/exportConfig.js +12 -12
  16. package/src/components/sale/filesquery/UserQuery.vue +6 -0
  17. package/src/components/sale/filesquery/filequerydetail/ChargeQueryDetail.vue +1 -1
  18. package/src/components/webmeter/DrillData/LostContactAnalysisList.vue +2 -1
  19. package/src/components/webmeter/DrillData/UserGasEform.vue +1 -1
  20. package/src/components/webmeter/DrillData/UserLostContactAnalysis.vue +2 -1
  21. package/src/components/webmeter/recharge/RechargeList.vue +1 -1
  22. package/src/filiale/WEINAN/manage/ChangeMeterQuery.vue +26 -26
  23. package/src/filiale/dongguan/components/SellReport/BankManager.vue +146 -0
  24. package/src/filiale/dongguan/components/SellReport/SiteManager.vue +147 -0
  25. package/src/filiale/dongguan/components/WebReport/BussinessType.vue +137 -0
  26. package/src/filiale/dongguan/components/WebReport/Paymentpie.vue +157 -0
  27. package/src/filiale/dongguan/reportManage.js +21 -0
  28. package/src/filiale/kelai/UserQuery.vue +963 -0
  29. package/src/filiale/kelai/exportConfig.js +1062 -0
  30. package/src/filiale/kelai/sale.js +8 -0
  31. package/src/filiale/qianneng/ArrearsQuery.vue +2 -2
  32. package/src/filiale/qianneng/ChargeQuery.vue +2 -2
  33. package/src/filiale/qianneng/HandplanQuery.vue +1 -1
  34. package/src/filiale/qianneng/exportConfig.js +3 -3
  35. package/src/filiale/rongcheng/exportConfig.js +2 -2
  36. package/.gradle/4.4/fileContent/fileContent.lock +0 -0
  37. package/.gradle/4.4/taskHistory/taskHistory.bin +0 -0
  38. package/.gradle/buildOutputCleanup/outputFiles.bin +0 -0
  39. package/build/libs/ManageClient-3.1.0-17.jar +0 -0
  40. package/build/tmp/jar/MANIFEST.MF +0 -2
@@ -0,0 +1,137 @@
1
+ <template lang="html">
2
+ <div id="charts">
3
+ <div id="sm" :style="{width:'100%',height:'98%'}"></div>
4
+ </div>
5
+ </template>
6
+
7
+ <script>
8
+ /* eslint-disable indent,key-spacing,no-labels */
9
+
10
+ import * as Util from '../../../../Util'
11
+ import co from 'co'
12
+ import echarts from 'echarts'
13
+ import {HttpResetClass } from 'vue-client'
14
+
15
+ let getData = function * (self) {
16
+ let load = new HttpResetClass()
17
+ load.load('POST','rs/sql/BusinessType',
18
+ {data: {startDate: self.startdate, endDate: self.enddate,f_orgid: self.orgid}},
19
+ {resolveMsg: null, rejectMsg: null})
20
+ .then((res) => {
21
+ self.texttile = '用户类型'
22
+ let arrparams = []
23
+ let numdata = []
24
+ let pricedata = []
25
+ for (var i = 0; i < res.data.length; i++) {
26
+ arrparams[i] = res.data[i].name
27
+ numdata[i] = res.data[i].num
28
+ pricedata[i] = res.data[i].money
29
+ }
30
+ self.set(arrparams,numdata,pricedata)
31
+ })
32
+ }
33
+ export default {
34
+ props: {
35
+ startdate: {
36
+ type: String,
37
+ default: Util.toStandardDateString()
38
+ },
39
+ enddate: {
40
+ type: String,
41
+ default: Util.toStandardDateString()
42
+ },
43
+ orgid: {
44
+ type: String
45
+ }
46
+ },
47
+ data () {
48
+ title: '业务类型'
49
+ return {
50
+ texttile: '',
51
+ xc: ''
52
+ }
53
+ },
54
+ methods: {
55
+ set (arrparams,numdata,pricedata) {
56
+ this.xc = echarts.init(document.getElementById('sm'))
57
+ this.xc.setOption({
58
+ title : {
59
+ text: '非气体营收汇总',
60
+ subtext: '数据查询来源',
61
+ x: 'left'
62
+ },
63
+ tooltip:{
64
+ trigger:'axis'
65
+ },
66
+ legend: {
67
+ x: 'left',
68
+ y: 'bottom',
69
+ data: ['数量','金额']
70
+ },
71
+ toolbox: {
72
+ show : true,
73
+ feature : {
74
+ dataView : {show: true, readOnly: false},
75
+ magicType : {show: true, type: ['line', 'bar']},
76
+ restore : {show: true},
77
+ saveAsImage : {show: true}
78
+ }
79
+ },
80
+ calculable : true,
81
+ xAxis : [
82
+ {
83
+ type : 'category',
84
+ data : arrparams
85
+ }
86
+ ],
87
+ yAxis : [
88
+ {
89
+ type : 'value'
90
+ }
91
+ ],
92
+ series : [
93
+ {
94
+ name:'数量',
95
+ type:'bar',
96
+ data:numdata,
97
+ markLine : {
98
+ data : [
99
+ {type : 'average', name: '平均值'}
100
+ ]
101
+ }
102
+ },
103
+ {
104
+ name:'金额',
105
+ type:'bar',
106
+ data:pricedata,
107
+ markLine : {
108
+ data : [
109
+ {type : 'average', name : '平均值'}
110
+ ]
111
+ }
112
+ }
113
+ ]
114
+ })
115
+ },
116
+ searchdata () {
117
+ let getGen = getData(this)
118
+ co(getGen)
119
+ }
120
+ },
121
+ ready () {
122
+ this.searchdata()
123
+ },
124
+ watch: {
125
+ 'startdate' (val) {
126
+ this.searchdata()
127
+ },
128
+ 'enddate' (val) {
129
+ this.searchdata()
130
+ },
131
+ 'orgid' (val) {
132
+ this.searchdata()
133
+ }
134
+ }
135
+
136
+ }
137
+ </script>
@@ -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