| 
					
				 | 
			
			
				@@ -44,8 +44,10 @@ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         <view class="address-box-list"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				           <view class="address-box-list-item" v-for="(item, index) in nearParkingList" :key="index" @click="positionAddress(item)"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             <view class="abli-header"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-              <view class="abli-header-title">{{ item.roadName }}</view> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-              <view class="abli-header-subtitle">{{ item.areaName }}</view> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+              <view class="abli-header-title" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                >{{ item.roadName }} <text class="abli-header-subtitle">{{ item.areaName }}</text></view 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+              > 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+              <!-- <view class="abli-header-subtitle">{{ item.areaName }}</view> --> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				               <view class="abli-header-surplus"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                 <view class="abli-header-surplus-left" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                   >余位<text>{{ item.spaceIdle }}</text></view 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -58,7 +60,7 @@ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                 <view class="abli-bottom-left-navigation" @click="navigation(item.latitude, item.longitude, item.areaName)">导航</view> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                 <view class="abli-bottom-left-distance">{{ item.distance | kmUnit }}</view> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				               </view> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-              <view class="abli-bottom-right" @click="lookParkingRule(item)">包月规则</view> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+              <view class="abli-bottom-right" @click="lookParkingRule(item)">收费规则</view> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             </view> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				           </view> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         </view> 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -130,7 +132,7 @@ export default { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				       // 选中位置经纬度 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				       currentPositionHover: {}, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				       nearParkingObj: { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-        height: '70vh', 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        height: '60vh', 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         type: 'down' 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				       } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     }; 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -402,11 +404,11 @@ export default { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				       } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     }, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     pullDown() { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-      if (this.nearParkingObj.height === '25vh') { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-        this.nearParkingObj.height = '70vh'; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      if (this.nearParkingObj.height === '20vh') { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        this.nearParkingObj.height = '60vh'; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         this.nearParkingObj.type = 'down'; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				       } else { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-        this.nearParkingObj.height = '25vh'; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        this.nearParkingObj.height = '20vh'; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         this.nearParkingObj.type = 'up'; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				       } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     } 
			 |