|  |  | 
 |  |  | var year = null; | 
 |  |  | var month = null; | 
 |  |  | var day = null; | 
 |  |  | var hour = null; | 
 |  |  | var minute = null; | 
 |  |  | var second = null; | 
 |  |  | var week = null; | 
 |  |  | var year = '2020'; | 
 |  |  | var month = '05'; | 
 |  |  | var day = '01'; | 
 |  |  | var hour = '08'; | 
 |  |  | var minute = '00'; | 
 |  |  | var second = '00'; | 
 |  |  | var week = '星期一'; | 
 |  |  |  | 
 |  |  | setInterval(function () { | 
 |  |  |     setDate(); | 
 |  |  |     initlineChart(); | 
 |  |  |     initPieChart(); | 
 |  |  | }, 1000); | 
 |  |  |  | 
 |  |  | setInterval(function () { | 
 |  |  |     getOther(); | 
 |  |  | }, 500); | 
 |  |  |  | 
 |  |  | function setDate() { | 
 |  |  |     getDate(); | 
 |  |  | 
 |  |  |  | 
 |  |  | } | 
 |  |  |  | 
 |  |  | getDate(); | 
 |  |  | /** | 
 |  |  |  * 获取其他数据 | 
 |  |  |  */ | 
 |  |  | function getOther() { | 
 |  |  |     http.get(baseUrl+"/monitor/other", {crnId: getUrlVal("crnId")}, function (res) { | 
 |  |  |         if (res.code === 200){ | 
 |  |  |  | 
 |  |  |             // 左 | 
 |  |  |             $('#xDistance').text(res.data.xDistance); | 
 |  |  |             $('#yDistance').text(res.data.yDistance); | 
 |  |  |             $('#xDuration').text(res.data.xDuration); | 
 |  |  |             $('#yDuration').text(res.data.yDuration); | 
 |  |  |  | 
 |  |  |             // 中上 | 
 |  |  |             crnChartOption.series[0].data[0].value = res.data.xSpeed - 0; // 走行 | 
 |  |  |             crnChartOption.series[1].data[0].value = res.data.ySpeed - 0; // 升降 | 
 |  |  |             crnChartOption.series[2].data[0].value = res.data.zSpeed - 0; // 叉牙 | 
 |  |  |             crnChartOption.series[3].data[0].value = res.data.forkPos - 0; // 货叉位置 | 
 |  |  |             // crnChartOption.series[0].data[0].value = (Math.random()*100).toFixed(2) - 0; | 
 |  |  |             // crnChartOption.series[1].data[0].value = (Math.random()*7).toFixed(2) - 0; | 
 |  |  |             // crnChartOption.series[2].data[0].value = (Math.random()*2).toFixed(2) - 0; | 
 |  |  |             // crnChartOption.series[3].data[0].value = (Math.random()*2).toFixed(2) - 0; | 
 |  |  |             crnChart.setOption(crnChartOption); | 
 |  |  |  | 
 |  |  |             // 中下 | 
 |  |  |             if (res.data.isShow) { | 
 |  |  |                 $('#banner').hide(); | 
 |  |  |                 $('#led-content').show(); | 
 |  |  |                 $('#led-p-content').text(res.data.content); | 
 |  |  |             } else { | 
 |  |  |                 $('#led-content').hide(); | 
 |  |  |                 $('#banner').show(); | 
 |  |  |                 $('#led-p-content').text(""); | 
 |  |  |             } | 
 |  |  |  | 
 |  |  |         } else if (res.code === 403){ | 
 |  |  |             parent.location.href = baseUrl+"/login"; | 
 |  |  |         }  else { | 
 |  |  |             layer.msg("连接服务器失败", {icon: 2}); | 
 |  |  |         } | 
 |  |  |     }) | 
 |  |  |  | 
 |  |  | } | 
 |  |  |  |