|  | @@ -58,6 +58,7 @@
 | 
	
		
			
				|  |  |                :endDate="this.queryParams.range[1]"
 | 
	
		
			
				|  |  |                :doDates="this.doDates"
 | 
	
		
			
				|  |  |                :unDoDates="this.unDoDates"
 | 
	
		
			
				|  |  | +              :halfDoDates="this.halfDoDates"
 | 
	
		
			
				|  |  |                @select="onSelectDate"
 | 
	
		
			
				|  |  |              ></Calendar>
 | 
	
		
			
				|  |  |            </div>
 | 
	
	
		
			
				|  | @@ -162,6 +163,7 @@ export default {
 | 
	
		
			
				|  |  |        dataList: [],
 | 
	
		
			
				|  |  |        doDates: [],
 | 
	
		
			
				|  |  |        unDoDates: [],
 | 
	
		
			
				|  |  | +      halfDoDates: [],
 | 
	
		
			
				|  |  |        rateData: {},
 | 
	
		
			
				|  |  |      };
 | 
	
		
			
				|  |  |    },
 | 
	
	
		
			
				|  | @@ -238,6 +240,7 @@ export default {
 | 
	
		
			
				|  |  |        statistics(this.queryParams).then(response => {
 | 
	
		
			
				|  |  |            this.doDates = response.data.doDates;
 | 
	
		
			
				|  |  |            this.unDoDates = response.data.unDoDates;
 | 
	
		
			
				|  |  | +          this.unDoDates = response.data.halfDoDates;
 | 
	
		
			
				|  |  |            this.loading = false;
 | 
	
		
			
				|  |  |          }
 | 
	
		
			
				|  |  |        ).catch((err) => {
 |