|  |  | 
 |  |  |                       | 
 |  |  |                   </div> | 
 |  |  |                   <span style="color:rgba(0,0,0,.87);font-size: 15px;"> | 
 |  |  |                      已安装  <span style="float: right">0</span> | 
 |  |  |                      已安装  <span style="float: right">{{indexDataCount.cameraCount}}</span> | 
 |  |  | <!--                     <li class="el-icon-caret-bottom" style="color: #f56c6c">--> | 
 |  |  |                   </span> | 
 |  |  |                   <span style="color:rgba(0,0,0,.87);font-size: 15px;"> | 
 |  |  | 
 |  |  |    } | 
 |  |  |  | 
 |  |  |    function tubLogs() { | 
 |  |  |  | 
 |  |  |       const chart = echarts.init(document.getElementById("column-chart")); | 
 |  |  |       const option = { | 
 |  |  |          tooltip: { | 
 |  |  | 
 |  |  |                emphasis: { | 
 |  |  |                   focus: 'series' | 
 |  |  |                }, | 
 |  |  |                data: [] | 
 |  |  |                data: [], | 
 |  |  |                itemStyle: { | 
 |  |  |                   // 修改柱子的颜色 | 
 |  |  |                   color: '#e2b507' | 
 |  |  |                } | 
 |  |  |             }, | 
 |  |  |             { | 
 |  |  |                name: '入库', | 
 |  |  | 
 |  |  |                emphasis: { | 
 |  |  |                   focus: 'series' | 
 |  |  |                }, | 
 |  |  |                data: [] | 
 |  |  |                data: [], | 
 |  |  |                itemStyle: { | 
 |  |  |                   // 修改柱子的颜色 | 
 |  |  |                   color: '#2992c6' | 
 |  |  |                } | 
 |  |  |             }, | 
 |  |  |  | 
 |  |  |          ] | 
 |  |  |       }; | 
 |  |  |  | 
 |  |  |       let url = ctx + "/system/tubLogData"; | 
 |  |  |       let url = ctx + "/system/stat/tubLogData"; | 
 |  |  |       $.ajaxSettings.async = false; | 
 |  |  |       $.get(url,{},function(res){ | 
 |  |  |          vm.tubLogs = res.tubLogs; | 
 |  |  | 
 |  |  |  | 
 |  |  |    //首页第一行个数统计 | 
 |  |  |    function indexCount() { | 
 |  |  |       let url = ctx + "/system/indexDataCount"; | 
 |  |  |       let url = ctx + "/system/stat/indexDataCount"; | 
 |  |  |       $.ajaxSettings.async = false; | 
 |  |  |       $.get(url,{},function(res){ | 
 |  |  |          vm.indexDataCount = res.data; | 
 |  |  | 
 |  |  |    } | 
 |  |  |    //场地进度 | 
 |  |  |    function stationProcess() { | 
 |  |  |       let url = ctx + "/system/projectProcess"; | 
 |  |  |       let url = ctx + "/system/stat/projectProcess"; | 
 |  |  |       $.ajaxSettings.async = false; | 
 |  |  |       $.get(url,{},function(res){ | 
 |  |  |          vm.stationProcessData = res.projectData; | 
 |  |  | 
 |  |  |  | 
 |  |  |    // 获取数据库真实数据 | 
 |  |  |    function getReallyData() { | 
 |  |  |       let url = window.location.protocol + "//" + window.location.host + "/bjfw/system/project"; | 
 |  |  |       let url = window.location.protocol + "//" + window.location.host + "/bjfw/system/stat/project"; | 
 |  |  |       $.get(url,function(res){ | 
 |  |  |          var data = res.projects; | 
 |  |  |          showProjectPoint(data); | 
 |  |  | 
 |  |  |       map.openInfoWindow(markerInfoWin, point); //开启信息窗口 | 
 |  |  |    } | 
 |  |  |  | 
 |  |  |  | 
 |  |  |    //总进度仪表盘 | 
 |  |  |    function totalProcess() { | 
 |  |  |       var Chart1 = echarts.init(document.getElementById('Chart1')); | 
 |  |  |       var pointerData = 0; // 仪表指针数据 | 
 |  |  |       let url = ctx + "/system/totalProcess"; | 
 |  |  |       let url = ctx + "/system/stat/totalProcess"; | 
 |  |  |       $.ajaxSettings.async = false; | 
 |  |  |       $.get(url,{},function(res){ | 
 |  |  |          pointerData = res.pointerData; |