Commit c9cbfee6 authored by coffee's avatar coffee

统计分析屏蔽安全检查

parent d3b2150d
...@@ -5,7 +5,7 @@ CONFIG.TITLE = '轨道交通后台管理系统' ...@@ -5,7 +5,7 @@ CONFIG.TITLE = '轨道交通后台管理系统'
// 网络请求公用地址 // 网络请求公用地址
CONFIG.requestPath = 'http://localhost:8046' CONFIG.requestPath = 'http://192.168.0.117:8046'
// CONFIG.requestPath = 'http://10.20.72.34:8046' // CONFIG.requestPath = 'http://10.20.72.34:8046'
// CONFIG.requestPath = 'http://10.20.72.35:8046' // CONFIG.requestPath = 'http://10.20.72.35:8046'
......
...@@ -36,9 +36,9 @@ el-container(style="padding:0px;" :style="{height:currentHeight+40+'px'}") ...@@ -36,9 +36,9 @@ el-container(style="padding:0px;" :style="{height:currentHeight+40+'px'}")
div.div_width div.div_width
font.font_num_bottom {{dayalarmData[1].video || 0}} font.font_num_bottom {{dayalarmData[1].video || 0}}
font.font_str_bottom 视频监控报警数 font.font_str_bottom 视频监控报警数
div.div_width //- div.div_width
font.font_num_bottom {{dayalarmData[1].safety || 0}} //- font.font_num_bottom {{dayalarmData[1].safety || 0}}
font.font_str_bottom 安全检查报警数 //- font.font_str_bottom 安全检查报警数
div.div_width div.div_width
font.font_num_bottom {{dayalarmData[1].gate || 0}} font.font_num_bottom {{dayalarmData[1].gate || 0}}
font.font_str_bottom 出入口控制报警数 font.font_str_bottom 出入口控制报警数
...@@ -424,7 +424,7 @@ export default { ...@@ -424,7 +424,7 @@ export default {
} }
}).then((data) => { }).then((data) => {
if (data && data.code === 0) { if (data && data.code === 0) {
this.subSystemAlarmData.itemData = data.result this.subSystemAlarmData.itemData = data.result.filter(i=>{return i.name!='安全检查'})
this.subSystemAlarmData.legendData = data.result.map((item) => { this.subSystemAlarmData.legendData = data.result.map((item) => {
return item.name return item.name
}) })
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment