manage-client 3.2.210 → 3.2.212
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 +3 -2
- package/package.json +1 -1
- 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/WebHandplanQuery.vue +2 -61
- package/src/filiale/qianneng/WebmeterQuery.vue +0 -3
- package/src/filiale/qianneng/exportConfig.js +2 -3
- package/src/filiale/qianneng/sale.js +2 -0
- package/src/filiale/qianneng/webmeterManage.js +0 -1
- package/src/filiale/shanxian/AreaGeneralQuery.vue +690 -430
- package/src/filiale/shanxian/BankManager.vue +146 -0
- package/src/filiale/shanxian/BussinessType.vue +137 -0
- package/src/filiale/shanxian/reportManage.js +4 -0
- package/src/main.js +1 -1
- package/yarn-error.log +34 -34
|
@@ -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>
|
|
@@ -2,10 +2,14 @@
|
|
|
2
2
|
let specialComp = {
|
|
3
3
|
// 收费查询
|
|
4
4
|
'site-manager': (resolve) => { require(['./SiteManager'], resolve) },
|
|
5
|
+
//新增用户散列图
|
|
6
|
+
'bank-manager': (resolve) => { require(['./BankManager'], resolve) },
|
|
5
7
|
// 付款方式饼图
|
|
6
8
|
'paymentpie': (resolve) => {
|
|
7
9
|
require(['./Paymentpie'], resolve)
|
|
8
10
|
},
|
|
11
|
+
// 其他业务散列
|
|
12
|
+
'bussiness-type': (resolve) => { require(['./BussinessType'], resolve) }
|
|
9
13
|
}
|
|
10
14
|
exports.specialComp = specialComp
|
|
11
15
|
|
package/src/main.js
CHANGED
package/yarn-error.log
CHANGED
|
@@ -1,30 +1,30 @@
|
|
|
1
|
-
Arguments:
|
|
2
|
-
D:\Program Files\nodejs\node.exe C:\Users\80953\AppData\Roaming\npm\node_modules\yarn\bin\yarn.js install
|
|
3
|
-
|
|
4
|
-
PATH:
|
|
5
|
-
E:\Program Files\VMware\VMware Workstation\bin\;C:\Program Files (x86)\Common Files\Oracle\Java\javapath;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\Java\jdk1.8.0_311\bin;C:\Program Files\Java\jdk1.8.0_311\jre\bin;D:\Program Files\nodejs\;D:\Program Files\Git\cmd;D:\Program Files\Redis\;D:\Program Files (x86)\NetSarang\Xshell 7\;D:\Program Files\OpenVPN\bin;E:\软件;D:\Program Files\Redis;C:\Program Files (x86)\Microsoft SQL Server\150\DTS\Binn\;C:\Program Files\Azure Data Studio\bin;E:\软件\self;C:\Program Files\OpenVPN\bin;C:\Users\80953\AppData\Local\Programs\Python\Python310\Scripts\;C:\Users\80953\AppData\Local\Programs\Python\Python310\;C:\Users\80953\.cargo\bin;C:\Users\80953\AppData\Local\Microsoft\WindowsApps;;D:\Program Files\Microsoft VS Code\bin;D:\Program Files\JetBrains\IntelliJ IDEA 2022.2\bin;D:\Program Files\JetBrains\WebStorm 2022.2\bin;D:\Program Files\JetBrains\DataGrip 2022.2\bin;C:\Users\80953\AppData\Roaming\npm;C:\Program Files\Bandizip\;C:\Users\80953\AppData\Local\Programs\EmEditor;C:\Users\80953\AppData\Local\JetBrains\Toolbox\scripts;D:\Program Files\JetBrains\WebStorm 2022.2\bin;;D:\Program Files\JetBrains\IntelliJ IDEA 2022.2\bin;;D:\Program Files\JetBrains\DataGrip 2022.2.1\bin;;C:\Program Files\Azure Data Studio\bin;D:\Program Files\JetBrains\CLion 2022.2.1\bin;;C:\Users\80953\AppData\Local\Microsoft\WindowsApps
|
|
6
|
-
|
|
7
|
-
Yarn version:
|
|
8
|
-
1.22.19
|
|
9
|
-
|
|
10
|
-
Node version:
|
|
11
|
-
14.19.1
|
|
12
|
-
|
|
13
|
-
Platform:
|
|
14
|
-
win32 x64
|
|
15
|
-
|
|
16
|
-
Trace:
|
|
17
|
-
Error: https://registry.npmjs.org/jsencrypt: tunneling socket could not be established, cause=connect ECONNREFUSED 127.0.0.1:4780
|
|
18
|
-
at ClientRequest.onError (C:\Users\80953\AppData\Roaming\npm\node_modules\yarn\lib\cli.js:152376:17)
|
|
19
|
-
at Object.onceWrapper (events.js:520:26)
|
|
20
|
-
at ClientRequest.emit (events.js:400:28)
|
|
21
|
-
at Socket.socketErrorListener (_http_client.js:475:9)
|
|
22
|
-
at Socket.emit (events.js:400:28)
|
|
23
|
-
at emitErrorNT (internal/streams/destroy.js:106:8)
|
|
24
|
-
at emitErrorCloseNT (internal/streams/destroy.js:74:3)
|
|
25
|
-
at processTicksAndRejections (internal/process/task_queues.js:82:21)
|
|
26
|
-
|
|
27
|
-
npm manifest:
|
|
1
|
+
Arguments:
|
|
2
|
+
D:\Program Files\nodejs\node.exe C:\Users\80953\AppData\Roaming\npm\node_modules\yarn\bin\yarn.js install
|
|
3
|
+
|
|
4
|
+
PATH:
|
|
5
|
+
E:\Program Files\VMware\VMware Workstation\bin\;C:\Program Files (x86)\Common Files\Oracle\Java\javapath;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\Java\jdk1.8.0_311\bin;C:\Program Files\Java\jdk1.8.0_311\jre\bin;D:\Program Files\nodejs\;D:\Program Files\Git\cmd;D:\Program Files\Redis\;D:\Program Files (x86)\NetSarang\Xshell 7\;D:\Program Files\OpenVPN\bin;E:\软件;D:\Program Files\Redis;C:\Program Files (x86)\Microsoft SQL Server\150\DTS\Binn\;C:\Program Files\Azure Data Studio\bin;E:\软件\self;C:\Program Files\OpenVPN\bin;C:\Users\80953\AppData\Local\Programs\Python\Python310\Scripts\;C:\Users\80953\AppData\Local\Programs\Python\Python310\;C:\Users\80953\.cargo\bin;C:\Users\80953\AppData\Local\Microsoft\WindowsApps;;D:\Program Files\Microsoft VS Code\bin;D:\Program Files\JetBrains\IntelliJ IDEA 2022.2\bin;D:\Program Files\JetBrains\WebStorm 2022.2\bin;D:\Program Files\JetBrains\DataGrip 2022.2\bin;C:\Users\80953\AppData\Roaming\npm;C:\Program Files\Bandizip\;C:\Users\80953\AppData\Local\Programs\EmEditor;C:\Users\80953\AppData\Local\JetBrains\Toolbox\scripts;D:\Program Files\JetBrains\WebStorm 2022.2\bin;;D:\Program Files\JetBrains\IntelliJ IDEA 2022.2\bin;;D:\Program Files\JetBrains\DataGrip 2022.2.1\bin;;C:\Program Files\Azure Data Studio\bin;D:\Program Files\JetBrains\CLion 2022.2.1\bin;;C:\Users\80953\AppData\Local\Microsoft\WindowsApps
|
|
6
|
+
|
|
7
|
+
Yarn version:
|
|
8
|
+
1.22.19
|
|
9
|
+
|
|
10
|
+
Node version:
|
|
11
|
+
14.19.1
|
|
12
|
+
|
|
13
|
+
Platform:
|
|
14
|
+
win32 x64
|
|
15
|
+
|
|
16
|
+
Trace:
|
|
17
|
+
Error: https://registry.npmjs.org/jsencrypt: tunneling socket could not be established, cause=connect ECONNREFUSED 127.0.0.1:4780
|
|
18
|
+
at ClientRequest.onError (C:\Users\80953\AppData\Roaming\npm\node_modules\yarn\lib\cli.js:152376:17)
|
|
19
|
+
at Object.onceWrapper (events.js:520:26)
|
|
20
|
+
at ClientRequest.emit (events.js:400:28)
|
|
21
|
+
at Socket.socketErrorListener (_http_client.js:475:9)
|
|
22
|
+
at Socket.emit (events.js:400:28)
|
|
23
|
+
at emitErrorNT (internal/streams/destroy.js:106:8)
|
|
24
|
+
at emitErrorCloseNT (internal/streams/destroy.js:74:3)
|
|
25
|
+
at processTicksAndRejections (internal/process/task_queues.js:82:21)
|
|
26
|
+
|
|
27
|
+
npm manifest:
|
|
28
28
|
{
|
|
29
29
|
"name": "manage-client",
|
|
30
30
|
"version": "3.0.27-akyh-50",
|
|
@@ -122,12 +122,12 @@ npm manifest:
|
|
|
122
122
|
],
|
|
123
123
|
"author": "liuxudong",
|
|
124
124
|
"license": "ISC"
|
|
125
|
-
}
|
|
126
|
-
|
|
127
|
-
yarn manifest:
|
|
128
|
-
No manifest
|
|
129
|
-
|
|
130
|
-
Lockfile:
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
yarn manifest:
|
|
128
|
+
No manifest
|
|
129
|
+
|
|
130
|
+
Lockfile:
|
|
131
131
|
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
|
|
132
132
|
# yarn lockfile v1
|
|
133
133
|
|
|
@@ -7656,4 +7656,4 @@ Lockfile:
|
|
|
7656
7656
|
zrender@4.0.4:
|
|
7657
7657
|
version "4.0.4"
|
|
7658
7658
|
resolved "https://registry.yarnpkg.com/zrender/-/zrender-4.0.4.tgz#910e60d888f00c9599073f23758dd23345fe48fd"
|
|
7659
|
-
integrity sha512-03Vd/BDl/cPXp8E61f5+Xbgr/a4vDyFA+uUtUc1s+5KgcPbyY2m+78R/9LQwkR6QwFYHG8qk25Q8ESGs/qpkZw==
|
|
7659
|
+
integrity sha512-03Vd/BDl/cPXp8E61f5+Xbgr/a4vDyFA+uUtUc1s+5KgcPbyY2m+78R/9LQwkR6QwFYHG8qk25Q8ESGs/qpkZw==
|