0

I have create a new project with ionic start myApp blank

Now i need to add tab in to the project i have create folder tabs in pages and create two file inside tabs tabs.html tabs.ts in tabs.html

<ion-tabs>
  <ion-tab [root]="homePage" tabTitle="Home" tabIcon="bulb" ></ion-tab>
  <ion-tab [root]="reclamationsPage" tabTitle="Reclamations" tabIcon="settings"></ion-tab>
</ion-tabs>

in tabs.ts

import { Component } from '@angular/core';
import { ReclamationsPage } from '../reclamations/reclamations';
import { HomePage } from '../home/home';


@Component({
  selector: 'page-tabs',
  templateUrl: 'tabs.html',
})
export class TabsPage {

  reclamationsPage: ReclamationsPage;
  homePage: HomePage;
}

in app.module.ts i have add

declarations: [
    MyApp,
    HomePage,
    LoginPage,
    ReclamationsPage,
    TabsPage
  ],
  imports: [
    BrowserModule,
    HttpModule,
    HttpClientModule,
    IonicModule.forRoot(MyApp)
  ],
  bootstrap: [IonicApp],
  entryComponents: [
    MyApp,
    HomePage,
    LoginPage,
    ReclamationsPage,
    TabsPage
  ],

and in app.component.ts i have change rootPage:any with rootPage:any = TabsPage;

but when i excute my code ionic serve i have noting in screen blank page look the imageenter image description here

ionic info

Ionic:

   ionic (Ionic CLI)  : 4.2.1 (C:\Users\android\AppData\Roaming\npm\node_modules\ionic)
   Ionic Framework    : ionic-angular 3.9.2
   @ionic/app-scripts : 3.2.0

Cordova:

   cordova (Cordova CLI) : 8.1.2 (cordova-lib@8.1.1)
   Cordova Platforms     : android 7.1.1
   Cordova Plugins       : cordova-plugin-ionic-keyboard 2.1.3, cordova-plugin-ionic-webview 2.2.0, (and 8 other plugins)

System:

   Android SDK Tools : 26.1.1 (C:\Users\android\AppData\Local\Android\sdk)
   NodeJS            : v8.12.0 (C:\Program Files\nodejs\node.exe)
   npm               : 6.4.1
   OS                : Windows 10
4

1 回答 1

2

标签.html;

<ion-tabs [selectedIndex]="myIndex">
    <ion-tab [root]="tab1Root" tabIcon="star"></ion-tab>
    <ion-tab [root]="tab2Root" tabIcon="home"></ion-tab>
</ion-tabs>

选项卡.ts

import { IonicPage, NavController, NavParams } from 'ionic-angular';

@IonicPage()
@Component({
  selector: 'page-tabs',
  templateUrl: 'tabs.html',
})

export class TabsPage{
    tab1Root = 'ReclamationsPage';
    tab2Root = 'HomePage';
    myIndex: number;
}

constructor(public navCtrl: NavController, public navParams: NavParams){
    this.myIndex = navParams.data.tabIndex || 0;
}
于 2018-10-23T09:06:35.843 回答