Newer
Older
import { Component, Renderer, ElementRef, ViewChild } from '@angular/core';
import {NavParams, NavController, AlertController, Events, Tabs, Platform} from 'ionic-angular';
import { ContactPage } from './contact/contact';
import { HomePage } from './home/home';
import { MinePage } from './mine/mine';
import { Storage } from '@ionic/storage';
import { AppService, AppGlobal } from '../../service/appHttpService';
import {BackButtonService} from "../../service/backButton.service";
@Component({
templateUrl: 'tabs.html'
})
export class TabsPage {
tabRoots: Object[];
userInfo: any;
userid: string;
roleflag: any;
role: any;
constructor(
public navCtrl: NavController,
public navParams: NavParams,
public alertCtrl: AlertController,
public storage: Storage,
public event: Events,
public render: Renderer,
public elementRef: ElementRef,
public appService: AppService,
private backButtonService:BackButtonService,
public platform:Platform,
tabIconOn: 'custom-home-on',
tabIconOff: 'custom-home-off',
index:0
tabIconOn: 'custom-contact-on',
tabIconOff: 'custom-contact-off',
index:1
tabIconOn: 'custom-notice-on',
tabIconOff: 'custom-notice-off',
index:2
tabIconOn: 'custom-owner-on',
tabIconOff: 'custom-owner-off',
index:3
this.platform.ready().then(() => {
this.backButtonService.registerBackButtonAction(this.myTabs);
});
// this.userInfo = this.storage.get("userLoginInfo").then((value) => {
// this.userInfo = value;
// if (this.userInfo.password == '000000') {
// //进入修改密码页面
// this.navCtrl.push("ModifyPasswordPage")
// }
// });