-
-
欢迎进入中国烟草
-
这里是中国烟草的主界面,您可以在这里进行各种操作和管理。
-
+
+
唐山烟草智能网络设备运维与问答系统
+
+
+
+
+
+ 设备状态监控
+
+
+
+
+
+
+
+
+
+ {{ scope.row.status }}
+
+
+
+
+
+
+
+
+
+
+ 检测设备信息 (按状态统计,饼状图)
+
+
+
+
+
+ 检测设备信息 (按设备类型,饼状图)
+
+
+
+
+
+
+
+
+
+ 设备预警信息
+
+
+
+
+
+
+
+ {{ scope.row.level }}
+
+
+
+
+
+
+
+
+
+
+ 预警信息统计
+
+
+
+
-
-
-
-
欢迎进入中国烟草
-
这里是中国烟草的主界面,您可以在这里进行各种操作和管理。
-
-
-
+ // 初始化预警信息统计图表
+ const alertStatsChart = echarts.init(document.getElementById('alertStatsChart'));
+ alertStatsChart.setOption({
+ title: { text: '预警信息统计', left: 'center' },
+ tooltip: {},
+ radar: {
+ indicator: [
+ { name: '火警类', max: 500 },
+ { name: '冲禁类', max: 500 },
+ { name: '灾害', max: 500 },
+ { name: '群体性', max: 500 },
+ { name: '行政类', max: 500 },
+ { name: '交通类', max: 500 },
+ { name: '重大', max: 500 },
+ ],
+ },
+ series: [{
+ name: '预警统计',
+ type: 'radar',
+ data: [
+ {
+ value: [75, 452, 64, 94, 44, 0, 29],
+ name: '预警次数',
+ },
+ ],
+ }],
+ });
+ },
+ },
+};
+
-
-
-
-
\ No newline at end of file
+
\ No newline at end of file