animalOwnerD(query=""){
let arr = this.ownerList.filter(item => {
return item.name.includes(query);
});
if (arr.length > 200) {
this.ownerTop200= arr.slice(0, 200);
} else {
this.ownerTop200= arr;
}
},
//接口返回大数据量集合
getOwnerList(orgParmars).then(data => {
this.ownerList = data;
this.ownerTop200= data.slice(0, 200);
});