涉密网络统计

pg_adapter
dshclm 8 months ago
parent 41bbfe3ccc
commit a019487ff1

@ -6,7 +6,7 @@
<style>
.echart{
width: 100%;
height: 98%;
height: 43%;
background-color: white;
margin-top: 10px;
border-radius: 10px;
@ -24,10 +24,13 @@
<div class="container-div" id="app">
<div class="row">
<div class="echart">
<div class="children_echarts left_echarts" style="width: 30%;padding-top: 10px;">
<div id="leftMain" style="width: 400px;height:500px"></div>
<div class="children_echarts left_echarts">
<div id="leftMain" style="width: 600px;height:330px"></div>
</div>
<div class="children_echarts right_echarts">
<div id="rightMain" style="width: 600px;height:330px"></div>
</div>
</div>
<div class="children_echarts right_echarts" style="width: 70%">
<div class="col-sm-12 search-collapse">
<form id="formId">
<div class="select-list">
@ -66,14 +69,11 @@
</div>
</form>
</div>
<div class="col-sm-12 select-table table-striped" style="min-height: 84%">
<div class="col-sm-12 select-table table-striped" style="min-height: 44%">
<table id="bootstrap-table"></table>
</div>
</div>
</div>
</div>
</div>
<th:block th:include="include :: footer" />
<th:block th:include="include :: echarts-js" />
<script th:inline="javascript">
@ -208,12 +208,11 @@
if (response.data.code == web_status.SUCCESS){
myChart.setOption({
title: {
text: '网络设备密级统计'
text: '网络终端数统计'
},
tooltip: {},
legend: {
data:['设备密级'],
bottom: 'bottom',
data:['终端数'],
},
xAxis: {
data: response.data.data.xAxisData
@ -223,7 +222,7 @@
},
series: [
{
name: '设备密级',
name: '终端数',
type: 'bar',
data: response.data.data.yAxisData,
itemStyle: {
@ -232,7 +231,36 @@
}
]
});
console.log(response.data.data)
}
})
var rightMain = echarts.init(document.getElementById('rightMain'));
axios.post(prefix + '/countNetInfo').then(response => {
if (response.data.code == web_status.SUCCESS){
rightMain.setOption({
title: {
text: '网络设备种类统计'
},
tooltip: {},
legend: {
data:['设备种类'],
},
xAxis: {
data: response.data.data.xAxisData
},
yAxis: {
},
series: [
{
name: '设备种类',
type: 'bar',
data: response.data.data.yAxisData,
itemStyle: {
color: '#4e9bf1'
}
}
]
});
}
})
</script>

Loading…
Cancel
Save