|
|
@ -155,14 +155,14 @@ const seachRef = ref() |
|
|
|
const onSearchChange = (field, value)=>{ |
|
|
|
if(field=='planerId'){ |
|
|
|
if(value.length>0){ |
|
|
|
if(value[value.length-1]==''){ |
|
|
|
if(value[value.length-1]=='ALL'){ |
|
|
|
//全选 |
|
|
|
seachRef.value.setFormValues({ |
|
|
|
planerId:[''] |
|
|
|
planerId:['ALL'] |
|
|
|
}) |
|
|
|
}else{ |
|
|
|
seachRef.value.setFormValues({ |
|
|
|
planerId:value.filter(item=>item!='') |
|
|
|
planerId:value.filter(item=>item!='ALL') |
|
|
|
}) |
|
|
|
} |
|
|
|
} |
|
|
|