| 
					
				 | 
			
			
				@@ -103,6 +103,9 @@ public class ChooseCabinetFragment extends Fragment { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         // 判断是否是直接投递的  how_to_send  如果不是直接投递跳转过来的  那就隐藏投递流程 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         if (!"expressDelivery".equals(pageType)){ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             view.findViewById(R.id.how_to_send).setVisibility(View.GONE); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            ViewGroup.LayoutParams layoutParams = view.findViewById(R.id.background_layout).getLayoutParams(); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            layoutParams.height = 1500; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            view.findViewById(R.id.background_layout).setLayoutParams(layoutParams); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         }else{ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             view.findViewById(R.id.how_to_send).setVisibility(View.VISIBLE); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         } 
			 |