在Ionic 3中导航到另一页时,标签栏丢失

时间:2019-07-17 10:23:07

标签: tabs ionic3

我尝试使用navCtrl.push()单击菜单项时导航到新页面。但是这里的问题是我的标签栏在新页面中丢失了。任何建议对我都会有帮助。

tabs.html

<ion-tabs [tabsHighlight]="true" >

 <ion-tab id="SHM-More Tab" tabTitle="More" #moreContent tabIcon="ios-more" (ionSelect)="openMoreOptions()">
 </ion-tab>
</ion-tabs>

 <ion-menu id="menuMore" [content]="moreContent" side="right" type="overlay">
   <ion-header>
      <ion-toolbar class="menu-header" padding>
      Logged in as: {{userName ? userName : 'N/A'}}
    </ion-toolbar>
   </ion-header>
  <ion-content padding>
     <ion-col (click)="whatsNew()">
       <span >What's New</span> 
     </ion-col>
   </ion-content>
  </ion-menu>

tabs.ts

whatsNew(){
 this.navCtrl.push('ReleasenotesPage');
}

0 个答案:

没有答案