this.ones.map(item=>{
for(let ite of this.twos){
// console.log(ite,'ite')
if(ite.parentId==item.id){
this.query.cataIds.push({bigCateId:item.id,smallCateId:ite.id})
}else{
let obj={bigCateId:item.id,smallCateId:''}
if(JSON.stringify(this.query.cataIds).indexOf(JSON.stringify(obj)) === -1){
this.query.cataIds.push(obj)
}
}
}
})