Во-первых, вам нужно импортировать вкладки из ионно-угловых в вашем search.ts
import { NavController, Tabs } from ionic-angular;
export class SearchPage {
// then assign the navctrl parent to the tab
constructor(public navCtrl: NavController, public tab: Tabs) {
this.tab = this.navCtrl.parent;
}
// create a method that will be called after click
goToTab(){
this.tab.select(3); // depends on what index of the tab you want to go
}
}
В вашем search.html
<button (click)="goToTab()"> To other tab </button>