门口门禁-车辆标点进出统计
							parent
							
								
									82ca607e78
								
							
						
					
					
						commit
						7b3cda2706
					
				|  | @ -3,10 +3,10 @@ | |||
|     <div v-if= "type !== 'CAMERA'" class="level-title"> | ||||
|       <h1>区域名称:{{ info.GATE_AREA_NAME }}</h1> | ||||
|     </div> | ||||
|     <table v-if= "type !== 'CAMERA'" class="table-ui"> | ||||
|     <table v-for="(item,index) in varList" :key="index" v-if= "type !== 'CAMERA'" class="table-ui"> | ||||
|       <tr> | ||||
|         <td class="bbg-transparent">闸机名称</td> | ||||
|         <td colspan="5">{{ info.GATE_MACHINE_NAME }}</td> | ||||
|         <td colspan="5">{{ item.GATE_NAME }}</td> | ||||
|       </tr> | ||||
|       <!--      <tr>--> | ||||
|       <!--        <td class="bbg-transparent">型号</td>--> | ||||
|  | @ -14,11 +14,11 @@ | |||
|       <!--      </tr>--> | ||||
|       <tr> | ||||
|         <td class="bbg-transparent">今日进</td> | ||||
|         <td>{{ type == 'CAR'? info.CAR_IN : info.PERSON_IN }}</td> | ||||
|         <td width="60px">{{ type == 'CAR'? item.CAR_IN : info.PERSON_IN }}</td> | ||||
|         <td class="bbg-transparent">今日出</td> | ||||
|         <td>{{ type == 'CAR'? info.CAR_OUT : info.PERSON_OUT }}</td> | ||||
|         <td width="60px">{{ type == 'CAR'? item.CAR_OUT : info.PERSON_OUT }}</td> | ||||
|         <td class="bbg-transparent">当前滞留</td> | ||||
|         <td>{{ type == 'CAR'? info.CAR_IN - info.CAR_OUT : info.PERSON_IN - info.PERSON_OUT }}</td> | ||||
|         <td width="60px">{{ type == 'CAR'? item.CAR_IN - item.CAR_OUT : info.PERSON_IN - info.PERSON_OUT }}</td> | ||||
|       </tr> | ||||
|       <tr v-if="type == 'PERSON'"> | ||||
|         <td colspan="6"> | ||||
|  | @ -85,13 +85,20 @@ export default { | |||
|       default() { | ||||
|         return '' | ||||
|       } | ||||
|     }, | ||||
|     GATE_VIDEO_ID: { | ||||
|       type: String, | ||||
|       default() { | ||||
|         return '' | ||||
|       } | ||||
|     } | ||||
|   }, | ||||
|   data() { | ||||
|     return { | ||||
|       config: config, | ||||
|       info: {}, | ||||
|       recordAllList: [] | ||||
|       recordAllList: [], | ||||
|       varList:[] | ||||
|     } | ||||
|   }, | ||||
| 
 | ||||
|  | @ -112,6 +119,7 @@ export default { | |||
|         '/map/getGatesInAndOutNumById', | ||||
|         { | ||||
|           GATE_AREA_ID: this.id, | ||||
|           GATE_VIDEO_ID: this.GATE_VIDEO_ID, | ||||
|           TYPE: this.type, | ||||
|           GANGKOU: this.gangkou, | ||||
|           CORPINFO_ID: this.corpId | ||||
|  | @ -124,12 +132,11 @@ export default { | |||
|           this.info.CAR_OUT = 0 | ||||
|           this.info.PERSON_IN = 0 | ||||
|           this.info.PERSON_OUT = 0 | ||||
|           this.varList = data.pd.varList | ||||
|           for (let i = 0; i < data.pd.varList.length; i++) { | ||||
|             if (data.pd.varList[i].TYPE == 'CAR_IN') { | ||||
|               this.info.CAR_IN = data.pd.varList[i].COUNT | ||||
|             } | ||||
|             if (data.pd.varList[i].TYPE == 'CAR_OUT') { | ||||
|               this.info.CAR_OUT = data.pd.varList[i].COUNT | ||||
|             if (this.type == 'CAR') { | ||||
|               this.info.CAR_IN = data.pd.varList[i].CAR_IN | ||||
|               this.info.CAR_OUT = data.pd.varList[i].CAR_OUT | ||||
|             } | ||||
|             if (data.pd.varList[i].TYPE == 'PERSON_IN') { | ||||
|               this.info.PERSON_IN = data.pd.varList[i].COUNT | ||||
|  | @ -149,6 +156,7 @@ export default { | |||
|         '/map/getGatesInAndOutListById?showCount=10000¤tPage=1', | ||||
|         { | ||||
|           GATE_AREA_ID: this.id, | ||||
|           GATE_VIDEO_ID: this.GATE_VIDEO_ID, | ||||
|           TYPE: this.type, | ||||
|           GANGKOU: this.gangkou, | ||||
|           CORPINFO_ID: this.corpId | ||||
|  |  | |||
		Loading…
	
		Reference in New Issue