|  | @@ -135,8 +135,8 @@
 | 
	
		
			
				|  |  |                    :disabled="cannotEdit()"
 | 
	
		
			
				|  |  |                    v-model="formData.roleIds"
 | 
	
		
			
				|  |  |                    placeholder="请选择检查人员"
 | 
	
		
			
				|  |  | -                  multiple
 | 
	
		
			
				|  |  | -                  filterable
 | 
	
		
			
				|  |  | +                  multiple   
 | 
	
		
			
				|  |  | +                  clearable               
 | 
	
		
			
				|  |  |                    collapse-tags
 | 
	
		
			
				|  |  |                    @change="handleRolesChange"
 | 
	
		
			
				|  |  |                  >
 | 
	
	
		
			
				|  | @@ -697,6 +697,7 @@ export default {
 | 
	
		
			
				|  |  |          checkType: null,
 | 
	
		
			
				|  |  |          startDate: null,
 | 
	
		
			
				|  |  |          endDate: null,
 | 
	
		
			
				|  |  | +        taskHasCompleted:null,
 | 
	
		
			
				|  |  |        };
 | 
	
		
			
				|  |  |      },
 | 
	
		
			
				|  |  |      getRolesByOrg() {
 | 
	
	
		
			
				|  | @@ -762,7 +763,7 @@ export default {
 | 
	
		
			
				|  |  |          this.formData.planCreateOrgId = null;
 | 
	
		
			
				|  |  |          this.formData.planCreateOrgName = null;
 | 
	
		
			
				|  |  |          this.formData.roleList = null;
 | 
	
		
			
				|  |  | -        this.formData.roleIds = null;
 | 
	
		
			
				|  |  | +        this.formData.roleIds = [];
 | 
	
		
			
				|  |  |          this.formData.execOrg = null;
 | 
	
		
			
				|  |  |          this.formData.checkOrg = null;
 | 
	
		
			
				|  |  |          this.formData.buildTaskNow = false;
 | 
	
	
		
			
				|  | @@ -773,6 +774,9 @@ export default {
 | 
	
		
			
				|  |  |          this.formData.execOrgIds = null;
 | 
	
		
			
				|  |  |          this.formData.rulePointIds = null;
 | 
	
		
			
				|  |  |          this.formData.distributePlanStatus = null;
 | 
	
		
			
				|  |  | +        this.formData.taskHasCompleted=null;
 | 
	
		
			
				|  |  | +        this.formData.startDate=null;
 | 
	
		
			
				|  |  | +        this.formData.endDate=null;
 | 
	
		
			
				|  |  |        }
 | 
	
		
			
				|  |  |      },
 | 
	
		
			
				|  |  |      onSelect(selectList) {
 |