提交修改

pg_adapter
dshclm 6 months ago
parent 1fa42859fb
commit 6e948b6e10

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

Loading…
Cancel
Save