Skip to content
tabs.ts 2.63 KiB
Newer Older
wangqinghua's avatar
wangqinghua committed
import { Component, Renderer, ElementRef, ViewChild } from '@angular/core';
import {NavParams, NavController, AlertController, Events, Tabs} from 'ionic-angular';
wangqinghua's avatar
wangqinghua committed

import { WorkbenchPage } from './workbench/workbench';
import { ContactPage } from './contact/contact';
import { HomePage } from './home/home';
import { MinePage } from './mine/mine';

import { Storage } from '@ionic/storage';

import { ModifyPasswordPage } from '../modifyPassword/modifyPassword';
import { AppService, AppGlobal } from '../../service/appHttpService';
wangqinghua's avatar
wangqinghua committed
import {NoticePage} from "./notice/notice";
wangqinghua's avatar
wangqinghua committed

@Component({
  templateUrl: 'tabs.html'
})
export class TabsPage {
wangqinghua's avatar
wangqinghua committed
  @ViewChild('myTabs') myTabs:Tabs;
wangqinghua's avatar
wangqinghua committed

   tab1Root = HomePage;
   tab2Root = ContactPage;
   tab3Root = WorkbenchPage;
   tab4Root = MinePage;

  tabRoots: Object[];

  userInfo: any;

  userid: string;

  roleflag: any;
wangqinghua's avatar
wangqinghua committed
  tabsIndex;
wangqinghua's avatar
wangqinghua committed
  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
  ) {
    this.tabRoots = [{
      root: HomePage,
      tabTitle: '首页',
wangqinghua's avatar
wangqinghua committed
      tabIconOn: 'custom-home-on',
      tabIconOff: 'custom-home-off',
        index:0
wangqinghua's avatar
wangqinghua committed
    }, {
      root: ContactPage,
      tabTitle: '通讯录',
wangqinghua's avatar
wangqinghua committed
        tabIconOn: 'custom-contact-on',
        tabIconOff: 'custom-contact-off',
        index:1
wangqinghua's avatar
wangqinghua committed
    }, {
wangqinghua's avatar
wangqinghua committed
      root: NoticePage,
      tabTitle: '消息',
wangqinghua's avatar
wangqinghua committed
      tabIconOn: 'custom-notice-on',
        tabIconOff: 'custom-notice-off',
        index:2
wangqinghua's avatar
wangqinghua committed
    }, {
      root: MinePage,
      tabTitle: '我的',
wangqinghua's avatar
wangqinghua committed
        tabIconOn: 'custom-owner-on',
        tabIconOff: 'custom-owner-off',
        index:3
wangqinghua's avatar
wangqinghua committed
    }];

    //判断是否密码为初始六个0
wangqinghua's avatar
wangqinghua committed
    // this.userInfo = this.storage.get("userLoginInfo").then((value) => {
    //   this.userInfo = value;
    //   if (this.userInfo.password == '000000') {
    //     //进入修改密码页面
    //     this.navCtrl.push("ModifyPasswordPage")
    //   }
    // });
wangqinghua's avatar
wangqinghua committed

  }

wangqinghua's avatar
wangqinghua committed

    onChange(e){
      this.tabsIndex =e;
wangqinghua's avatar
wangqinghua committed
      this.myTabs.select(e);
wangqinghua's avatar
wangqinghua committed
    }

wangqinghua's avatar
wangqinghua committed
  // ionViewDidEnter() {
  //   this.queryUserRole();
  // }

  // //获取角色
  // queryUserRole() {
  //   this.storage.get("userLoginInfo").then((data) => {
  //     this.appService.ObserverHttpGet("/wisdomgroup/sysmanagement/user/queryRoleByUserid", { userid: data.userid })
  //       .subscribe((res: Response) => {
  //         this.role = res.json();
  //       }, error => {
  //         this.appService.alert('网络异常!');
  //       }
  //       );
  //   });
  // }
}