| 
					
				 | 
			
			
				@@ -60,6 +60,19 @@ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				               >
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             </div>
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				           </div>
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+          <el-select
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            v-model="queryParams.enableOrNot"
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            placeholder="摄像机启用状态"
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            style="width: 220px; padding: 0 10px"
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            clearable
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+          >
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            <el-option
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+              v-for="item in statusOptions"
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+              :key="item.value"
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+              :label="item.label"
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+              :value="item.value"
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            />
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+          </el-select>
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				           <div
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             :span="6"
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             justify="end"
 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -936,6 +949,16 @@ export default { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				           label: "否",
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         },
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				       ],
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      statusOptions:[
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        {
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+          label: '启用',
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+          value: '1'
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        },
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        {
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+          label: '停用',
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+          value: '2'
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        }
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      ],
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				       xianlu: [
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         {
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				           value: "1",
 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -1294,6 +1317,7 @@ export default { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				       this.queryParams.endMileBD = "";
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				       this.queryParams.stationName = "";
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				       this.queryParams.cameraCode = "";
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      this.queryParams.enableOrNot=''
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				       this.queryParams.pageNum = 1;
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				       this.queryParams.pageSize = 10;
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				       this.getCameraList();
 
			 |