manage-client 3.2.209 → 3.2.211
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/.gradle/4.4/fileHashes/fileHashes.bin +0 -0
- package/.gradle/4.4/fileHashes/fileHashes.lock +0 -0
- package/.gradle/7.1/dependencies-accessors/dependencies-accessors.lock +0 -0
- package/.gradle/7.1/dependencies-accessors/gc.properties +0 -0
- package/.gradle/7.1/executionHistory/executionHistory.bin +0 -0
- package/.gradle/7.1/executionHistory/executionHistory.lock +0 -0
- package/.gradle/7.1/fileChanges/last-build.bin +0 -0
- package/.gradle/7.1/fileHashes/fileHashes.bin +0 -0
- package/.gradle/7.1/fileHashes/fileHashes.lock +0 -0
- package/.gradle/7.1/gc.properties +0 -0
- package/.gradle/buildOutputCleanup/outputFiles.bin +0 -0
- package/build/dev-server.js +4 -4
- package/package.json +1 -1
- package/src/filiale/WEINAN/CancellationQuery.vue +528 -486
- package/src/filiale/WEINAN/ChargeQuery.vue +800 -800
- package/src/filiale/WEINAN/EnableQuery.vue +456 -456
- package/src/filiale/WEINAN/UserAddress.vue +655 -0
- package/src/filiale/WEINAN/UserAddressChange.vue +58 -0
- package/src/filiale/WEINAN/config/exportConfig.js +824 -824
- package/src/filiale/WEINAN/sale.js +52 -48
- package/src/filiale/huayin/ChangeMeterQuery.vue +657 -0
- package/src/filiale/huayin/ChargeQuery.vue +1305 -0
- package/src/filiale/huayin/config/DefaultPrint.js +6 -0
- package/src/filiale/huayin/config/exportConfig.js +1084 -0
- package/src/filiale/huayin/sale.js +8 -0
- package/src/filiale/qianneng/BusinessManage.vue +3 -0
- package/src/filiale/qianneng/OtherChargeQuery.vue +10 -1
- package/src/filiale/qianneng/WebHandplanQuery.vue +992 -0
- package/src/filiale/qianneng/WebmeterQuery.vue +67 -0
- package/src/filiale/qianneng/exportConfig.js +9 -1
- package/src/filiale/qianneng/sale.js +2 -0
- package/src/filiale/qianneng/webmeterManage.js +3 -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/BankManager.vue +146 -0
- package/src/filiale/shanxian/BussinessType.vue +137 -0
- package/src/filiale/shanxian/InspectListUserNew.vue +466 -0
- package/src/filiale/shanxian/InspectManage.vue +50 -0
- package/src/filiale/shanxian/reportManage.js +4 -0
- package/src/filiale/shanxian/sale.js +3 -1
- package/yarn-error.log +0 -7659
|
@@ -0,0 +1,146 @@
|
|
|
1
|
+
<template lang="html">
|
|
2
|
+
<div id="charts">
|
|
3
|
+
<div id="bm" :style="{width:'100%',height:'100%'}"></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
|
+
load.load('POST', 'rs/sql/userfilesvalues',
|
|
16
|
+
{data: {startDate: self.startdate, endDate: self.enddate, f_orgid: self.orgid}},
|
|
17
|
+
{resolveMsg: null, rejectMsg: null})
|
|
18
|
+
.then((res) => {
|
|
19
|
+
self.texttile = '用户类型'
|
|
20
|
+
// let arrparams = []
|
|
21
|
+
console.log('获取数据。。', res.data)
|
|
22
|
+
let org = []
|
|
23
|
+
//let name = []
|
|
24
|
+
let minyongvalue=[]
|
|
25
|
+
let feiminyongvalue=[]
|
|
26
|
+
for (var i = 0; i < res.data.length; i++) {
|
|
27
|
+
if (!org.includes(res.data[i].org)) {
|
|
28
|
+
org.push(res.data[i].org)
|
|
29
|
+
}
|
|
30
|
+
if (res.data[i].name === '民用') {
|
|
31
|
+
minyongvalue[org.indexOf(res.data[i].org)] = res.data[i].number
|
|
32
|
+
}else{
|
|
33
|
+
feiminyongvalue[org.indexOf(res.data[i].org)]= res.data[i].number
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
self.set(org,minyongvalue,feiminyongvalue)
|
|
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
|
+
title: '银行管理'
|
|
55
|
+
return {
|
|
56
|
+
texttile: '',
|
|
57
|
+
xc: '',
|
|
58
|
+
|
|
59
|
+
minyongvalue: [],
|
|
60
|
+
feiminyongvalue: []
|
|
61
|
+
}
|
|
62
|
+
},
|
|
63
|
+
methods: {
|
|
64
|
+
set (org,minyongvalue,feiminyongvalue) {
|
|
65
|
+
this.xc = echarts.init(document.getElementById('bm'))
|
|
66
|
+
this.xc.setOption({
|
|
67
|
+
title : {
|
|
68
|
+
text: '新增用户散列图',
|
|
69
|
+
subtext: '数据查询来源',
|
|
70
|
+
x: 'left'
|
|
71
|
+
},
|
|
72
|
+
tooltip : {
|
|
73
|
+
trigger: 'item'
|
|
74
|
+
},
|
|
75
|
+
legend: {
|
|
76
|
+
x: 'left',
|
|
77
|
+
y: 'bottom',
|
|
78
|
+
data: ['民用','非民用']
|
|
79
|
+
},
|
|
80
|
+
toolbox: {
|
|
81
|
+
show : true,
|
|
82
|
+
feature : {
|
|
83
|
+
dataView : {show: true, readOnly: false},
|
|
84
|
+
magicType : {show: true, type: ['line', 'bar']},
|
|
85
|
+
restore : {show: true},
|
|
86
|
+
saveAsImage : {show: true}
|
|
87
|
+
}
|
|
88
|
+
},
|
|
89
|
+
calculable : true,
|
|
90
|
+
xAxis : [
|
|
91
|
+
{
|
|
92
|
+
type : 'category',
|
|
93
|
+
data : org
|
|
94
|
+
}
|
|
95
|
+
],
|
|
96
|
+
yAxis : [
|
|
97
|
+
{
|
|
98
|
+
type : 'value'
|
|
99
|
+
}
|
|
100
|
+
],
|
|
101
|
+
series : [
|
|
102
|
+
{
|
|
103
|
+
name:'民用',
|
|
104
|
+
type:'bar',
|
|
105
|
+
data:minyongvalue,
|
|
106
|
+
markLine : {
|
|
107
|
+
data : [
|
|
108
|
+
{type : 'average', name: '平均值'}
|
|
109
|
+
]
|
|
110
|
+
}
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
name:'非民用',
|
|
114
|
+
type:'bar',
|
|
115
|
+
data:feiminyongvalue,
|
|
116
|
+
markLine : {
|
|
117
|
+
data : [
|
|
118
|
+
{type : 'average', name : '平均值'}
|
|
119
|
+
]
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
]
|
|
123
|
+
})
|
|
124
|
+
},
|
|
125
|
+
searchdata () {
|
|
126
|
+
let getGen =getData(this)
|
|
127
|
+
co(getGen)
|
|
128
|
+
}
|
|
129
|
+
},
|
|
130
|
+
ready () {
|
|
131
|
+
this.searchdata()
|
|
132
|
+
},
|
|
133
|
+
watch: {
|
|
134
|
+
'startdate' (val) {
|
|
135
|
+
this.searchdata()
|
|
136
|
+
},
|
|
137
|
+
'enddate' (val) {
|
|
138
|
+
this.searchdata()
|
|
139
|
+
},
|
|
140
|
+
'orgid' (val) {
|
|
141
|
+
this.searchdata()
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
}
|
|
146
|
+
</script>
|
|
@@ -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:'item'
|
|
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>
|