diff --git a/ruoyi-admin/src/main/resources/templates/system/property/propertynum/propertynum.html b/ruoyi-admin/src/main/resources/templates/system/property/propertynum/propertynum.html index 144fbcd..20bfa24 100644 --- a/ruoyi-admin/src/main/resources/templates/system/property/propertynum/propertynum.html +++ b/ruoyi-admin/src/main/resources/templates/system/property/propertynum/propertynum.html @@ -16,7 +16,7 @@ overflow: hidden; } .children_echarts{ - width: 49%; + width: 33%; height: 100%; } @@ -75,16 +75,19 @@
-
-
+
+
-
+
+
+
+

{{item.name}}{{item.value}}

-
+
@@ -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){