|
|
|
@ -29,10 +29,13 @@
|
|
|
|
|
<div class="row">
|
|
|
|
|
<div class="echart">
|
|
|
|
|
<div class="children_echarts left_echarts">
|
|
|
|
|
<div id="leftMain" style="width: 600px;height:330px"></div>
|
|
|
|
|
<div id="leftMain" style="width: 500px;height:330px"></div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="children_echarts center_echarts">
|
|
|
|
|
<div id="centerMain" style="width: 500px;height:330px"></div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="children_echarts right_echarts">
|
|
|
|
|
<div id="rightMain" style="width: 600px;height:330px"></div>
|
|
|
|
|
<div id="rightMain" style="width: 400px;height:330px"></div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="col-sm-12 search-collapse">
|
|
|
|
@ -251,6 +254,41 @@
|
|
|
|
|
console.log(response.data.data)
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
var centerChart = echarts.init(document.getElementById('centerMain'));
|
|
|
|
|
axios.post(prefix + '/countCheckMonth').then(response => {
|
|
|
|
|
if (response.data.code == web_status.SUCCESS){
|
|
|
|
|
centerChart.setOption({
|
|
|
|
|
title: {
|
|
|
|
|
text: '已登记统计'
|
|
|
|
|
},
|
|
|
|
|
tooltip: {},
|
|
|
|
|
legend: {
|
|
|
|
|
data:['人数']
|
|
|
|
|
},
|
|
|
|
|
xAxis: {
|
|
|
|
|
data: response.data.data.xAxisData,
|
|
|
|
|
axisLabel: {
|
|
|
|
|
rotate: 45, // 旋转标签的角度
|
|
|
|
|
margin: 10, // 标签与坐标轴的间距
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
yAxis: {
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
series: [
|
|
|
|
|
{
|
|
|
|
|
name: '人数',
|
|
|
|
|
type: 'bar',
|
|
|
|
|
data: response.data.data.yAxisData,
|
|
|
|
|
itemStyle: {
|
|
|
|
|
color: '#2ee37b'
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
});
|
|
|
|
|
console.log(response.data.data)
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
var rightMain = echarts.init(document.getElementById('rightMain'));
|
|
|
|
|
axios.post(prefix + '/countUser').then(response => {
|
|
|
|
|
if (response.data.code == web_status.SUCCESS){
|
|
|
|
|