You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							52 lines
						
					
					
						
							764 B
						
					
					
				
			
		
		
		
			
			
			
				
					
				
				
					
				
			
		
		
	
	
							52 lines
						
					
					
						
							764 B
						
					
					
				| /** | |
|  * color: 颜色 | |
|  * text: 文字 | |
|  * icon: 展示的图标 | |
|  */ | |
| 
 | |
| // 相机的状态 | |
| export const CameraStatusEnum = { | |
|   "-1": { | |
|     color: "", | |
|     text: "未启用", | |
|   }, | |
|   0: { | |
|     color: "", | |
|     text: "正常", | |
|   }, | |
|   1: { | |
|     color: "", | |
|     text: "网络中断", | |
|   }, | |
|   2: { | |
|     color: "", | |
|     text: "网络正常无图像", | |
|   }, | |
|   3: { | |
|     color: "", | |
|     text: "有图像, 图像存在问题", | |
|   }, | |
| }; | |
| 
 | |
| // 摄像机方向 | |
| export const CameraDirectionEnum = { | |
|   0: { | |
|     text: "上行", | |
|   }, | |
|   1: { | |
|     text: "下行", | |
|   }, | |
|   2: { | |
|     text: "上下行 (双向)", | |
|   }, | |
| }; | |
| 
 | |
| // 摄像 是否可控 是否有云台控制 0 有(球机) 1 ⽆(枪机) | |
| export const CameraControlTypeEnum = { | |
|   0: { | |
|     text: "球机", | |
|   }, | |
|   1: { | |
|     text: "枪机", | |
|   }, | |
| };
 | |
| 
 |