box4.js
3.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
function _loadAssetFee() {
let param = {
params: {
communityId: vc.getCurrentCommunity().communityId
}
}
vc.http.apiGet(
'/reportFeeMonthStatistics/queryOwePaymentCount',
param,
function (json, res) {
//vm.menus = vm.refreshMenuActive(JSON.parse(json),0);
let _json = JSON.parse(json);
if (_json.code == 0) {
let _data = _json.data;
initFeeChart(_data);
return;
}
},
function (errInfo, error) {
console.log('请求失败处理');
vc.toast(errInfo);
});
}
function initFeeChart(_data) {
var dom = document.getElementById("box4");
var myChart = echarts.init(dom);
var app = {};
option = null;
var xAxisData = [];
var data1 = [];
var data2 = [];
_data.forEach(item => {
xAxisData.push(item.feeName);
data1.push(-item.normalCount);
data2.push(item.objCount);
});
// for (var i = 0; i < 10; i++) {
// xAxisData.push('Class' + i);
// data1.push((Math.random() * 2).toFixed(2));
// data2.push(-Math.random().toFixed(2));
// }
var emphasisStyle = {
itemStyle: {
barBorderWidth: 1,
shadowBlur: 10,
shadowOffsetX: 0,
shadowOffsetY: 0,
shadowColor: 'rgba(0,0,0,0.5)'
}
};
option = {
backgroundColor: '',
legend: {
data: ['未交费','已缴费'],
left: 10
},
tooltip: {},
xAxis: {
data: xAxisData,
name: '费用项',
axisLine: { onZero: true },
splitLine: { show: false },
splitArea: { show: false }
},
textStyle: {//图例文字的样式
color: '#fff',
fontSize: 12
},
yAxis: {
inverse: true,
splitArea: { show: false }
},
grid: {
left: 0
},
color: ['green','red'],
series: [
{
name: '已缴费',
type: 'bar',
stack: 'one',
emphasis: emphasisStyle,
data: data1
},
{
name: '未交费',
type: 'bar',
stack: 'one',
emphasis: emphasisStyle,
data: data2
}
]
};
myChart.on('brushSelected', renderBrushed);
if (option && typeof option === "object") {
myChart.setOption(option, true);
}
}
function renderBrushed(params) {
var brushed = [];
var brushComponent = params.batch[0];
for (var sIdx = 0; sIdx < brushComponent.selected.length; sIdx++) {
var rawIndices = brushComponent.selected[sIdx].dataIndex;
brushed.push('[Series ' + sIdx + '] ' + rawIndices.join(', '));
}
myChart.setOption({
title: {
backgroundColor: '#333',
text: 'SELECTED DATA INDICES: \n' + brushed.join('\n'),
bottom: 0,
right: 0,
width: 100,
textStyle: {
fontSize: 12,
color: '#fff'
}
}
});
}
_loadAssetFee();