|
|
@ -16,7 +16,7 @@
|
|
|
|
overflow: hidden;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.children_echarts{
|
|
|
|
.children_echarts{
|
|
|
|
width: 49%;
|
|
|
|
width: 33%;
|
|
|
|
height: 100%;
|
|
|
|
height: 100%;
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -75,16 +75,19 @@
|
|
|
|
<div class="container-div" id="app">
|
|
|
|
<div class="container-div" id="app">
|
|
|
|
<div class="row">
|
|
|
|
<div class="row">
|
|
|
|
<div class="echart">
|
|
|
|
<div class="echart">
|
|
|
|
<div class="children_echarts left_echarts" style="width: 60%">
|
|
|
|
<div class="children_echarts left_echarts" style="width: 33%">
|
|
|
|
<div id="leftMain" style="width: 800px;height:310px"></div>
|
|
|
|
<div id="leftMain" style="width: 500px;height:310px"></div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="children_echarts right_echarts" style="width: 40%">
|
|
|
|
<div class="children_echarts center_echarts" style="width: 33%">
|
|
|
|
|
|
|
|
<div id="centerMain" style="width: 500px;height:310px"></div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="children_echarts right_echarts" style="width: 33%">
|
|
|
|
<div class="statuList">
|
|
|
|
<div class="statuList">
|
|
|
|
<p v-for="item in statusList">
|
|
|
|
<p v-for="item in statusList">
|
|
|
|
{{item.name}}<span>{{item.value}}</span>
|
|
|
|
{{item.name}}<span>{{item.value}}</span>
|
|
|
|
</p>
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div id="rightMain" style="width: 580px;height:200px"></div>
|
|
|
|
<div id="rightMain" style="width: 360px;height:200px"></div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="col-sm-12 search-collapse">
|
|
|
|
<div class="col-sm-12 search-collapse">
|
|
|
@ -267,11 +270,11 @@
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
var myChart = echarts.init(document.getElementById('leftMain'));
|
|
|
|
var myChart = echarts.init(document.getElementById('leftMain'));
|
|
|
|
axios.post(prefix + '/countInfo').then(response => {
|
|
|
|
axios.post(prefix + '/countMessageMonth').then(response => {
|
|
|
|
if (response.data.code == web_status.SUCCESS){
|
|
|
|
if (response.data.code == web_status.SUCCESS){
|
|
|
|
myChart.setOption({
|
|
|
|
myChart.setOption({
|
|
|
|
title: {
|
|
|
|
title: {
|
|
|
|
text: '信息设备种类统计'
|
|
|
|
text: '涉密信息设备统计'
|
|
|
|
},
|
|
|
|
},
|
|
|
|
tooltip: {},
|
|
|
|
tooltip: {},
|
|
|
|
legend: {
|
|
|
|
legend: {
|
|
|
@ -299,6 +302,39 @@
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
var centerMain = echarts.init(document.getElementById('centerMain'));
|
|
|
|
|
|
|
|
axios.post(prefix + '/countSecretsMonth').then(response => {
|
|
|
|
|
|
|
|
if (response.data.code == web_status.SUCCESS){
|
|
|
|
|
|
|
|
centerMain.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: '#c3ea51'
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
]
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
})
|
|
|
|
var rightMain = echarts.init(document.getElementById('rightMain'));
|
|
|
|
var rightMain = echarts.init(document.getElementById('rightMain'));
|
|
|
|
axios.post(prefix + '/countBF').then(response => {
|
|
|
|
axios.post(prefix + '/countBF').then(response => {
|
|
|
|
if (response.data.code == web_status.SUCCESS){
|
|
|
|
if (response.data.code == web_status.SUCCESS){
|
|
|
|