| 
					
				 | 
			
			
				@@ -469,3 +469,32 @@ function queryDeviceStatus(evt) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         obj.style.color = '#FF0000'
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         obj.style.opacity = 0.5 + 0.5 * Math.sin(2 * app.elapsedTime / 500);
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     }, '每帧改变透明度');
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+}
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+function reset(objArray) {
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    objArray.forEach(function (obj) {
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        obj.style.opacity = 1.0;
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        obj.style.color = null;
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        obj.off('update', null, '每帧改变透明度');
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    })
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+}
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+var timer = null;
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+function getTabledata(d) {
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    var ygArray = [];
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    d.forEach(function (d) {
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        var deviceInfo = {
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            "设备编号": d.ownerCode,
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            "设备名称": d.ownerName,
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            "安装位置": d.unitinfo,
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        };
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        ygArray.push(deviceInfo)
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    })
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    // 表格数据//创建对象 book
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    var tableData = {
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        // 列标题
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        props: ['设备编号', '设备名称', '安装位置'],
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        // 列数据
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        items: ygArray
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    };
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    return tableData;
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+}
 
			 |