personCharts.vue
5.51 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
141
142
143
144
145
<template>
<div class="_chart">
<div class="_chartTitle">
<h3>人群属性</h3>
<span>统计近30天累计消费人群数据</span>
</div>
</div>
<div class="_mainChart">
<div id="consumptionLevel" style="width: 500px;height:400px;float: left;margin-left: 80px"></div>
<div id="vipDistribute" style="width: 500px;height:400px;float: left;margin-left: 150px"></div>
<div class="clearfix"></div>
</div>
</template>
<script type="text/javascript">
var echarts = require('echarts');
import util from 'util';
module.exports = {
data:function() {
return {}
},
ready:function(){
//消费水平
var consumptionLevel = echarts.init(document.getElementById('consumptionLevel'));
this.getData("/chart/getConsumeAna", "消费水平", "金额\n(元)", consumptionLevel);
//会员分布
var vipDistribute = echarts.init(document.getElementById('vipDistribute'));
this.getData("/chart/getUserAna", "会员分布", "", vipDistribute);
},
methods:{
getData(url, title, xName, dom){
this.$http.post(url, {
dateId: util.dateFormat(new Date(),"YYYYMMdd")
}).then(function (response) {
var data = response.data.data;
var option = this.getYOption(data.yoho.x, data.yoho.y, data.shop.y, title, xName);
dom.setOption(option);
});
},
getYOption(xData, yYohoData, yShopData, title, xName){
var option = {
title : {
show: true,
text: title,
x:'center'
},
tooltip : {
show: true,
trigger: 'axis',
formatter: function (params){
//console.log(params);
var p = [];
for(var i=0; i<params.length; i++){
p.push(params[i].seriesName + ":" + params[i].value + "%");
}
return p.join('<br>');
}
},
legend: {
data:['当前店铺','YOHO!'],
show:true,
y:'bottom'
},
xAxis : [
{
type : 'category',
data : xData,
name: xName,
nameLocation:'start',
axisTick:{
show:false
},
splitLine:{
show:false
}
}
],
yAxis : [
{
type : 'value',
position: 'right',
axisLine:{
show:false
},
axisTick:{
show:false
},
axisLabel:{
formatter:function (params) {
return params + '%';
}
}
}
],
series : [
{
name:'当前店铺',
type:'bar',
data:yShopData,
barGap:'0',
itemStyle: {
normal: {
color: '#49b6d6',
label : {
show: false,
position: 'top',
textStyle:{
color:"#585858",
align:"center"
}
}
},
emphasis:{
}
}
},
{
name:'YOHO!',
type:'bar',
data:yYohoData,
itemStyle: {
normal: {
color: '#999999',
label : {
show: false,
position: 'top',
textStyle:{
color:"#585858",
align:"center"
}
}
},
emphasis:{
}
}
}
]
};
return option;
}
}
}
</script>