| 
					
				 | 
			
			
				@@ -49,7 +49,10 @@ export default defineComponent({ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				       if (this.disabled) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         return item.startTime 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				       } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-      if (item.svipEndDays > 0) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      if (item.svipEndDays > 0 && item.orderType === 'SVIP') { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        return dayjs(item.startTime).add(1, 'day').format('YYYY-MM-DD') 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      if (item.vipEndDays > 0 && item.orderType === 'VIP') { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         return dayjs(item.startTime).add(1, 'day').format('YYYY-MM-DD') 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				       } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				       return item.startTime 
			 |