job manage pages
This commit is contained in:
@@ -1,31 +1,69 @@
|
||||
<div *ngIf = "accountType == 'FAMILY'; else elseFulltag">
|
||||
|
||||
<ion-tabs class="bottom_bar_tabs">
|
||||
<div class="bottom_bardiv">
|
||||
<ion-tab-bar slot="bottom" class="bottom_bar">
|
||||
<ion-tab-button tab="tab1">
|
||||
<ion-icon name="home"></ion-icon>
|
||||
<ion-label>Home</ion-label>
|
||||
</ion-tab-button>
|
||||
<ion-tabs class="bottom_bar_tabs">
|
||||
<div class="bottom_bardiv">
|
||||
<ion-tab-bar slot="bottom" class="bottom_bar">
|
||||
<ion-tab-button tab="tab1">
|
||||
<ion-icon name="home"></ion-icon>
|
||||
<ion-label>Home</ion-label>
|
||||
</ion-tab-button>
|
||||
|
||||
<ion-tab-button tab="tab2">
|
||||
<ion-icon name="reader"></ion-icon>
|
||||
<ion-label>Market</ion-label>
|
||||
</ion-tab-button>
|
||||
<ion-tab-button tab="tab2">
|
||||
<ion-icon name="reader"></ion-icon>
|
||||
<ion-label>Suggest</ion-label>
|
||||
</ion-tab-button>
|
||||
|
||||
<ion-tab-button tab="mytasks" class="task_button">
|
||||
<ion-icon name="list-outline"></ion-icon>
|
||||
<ion-label>Tasks</ion-label>
|
||||
</ion-tab-button>
|
||||
<ion-tab-button tab="mytasks" class="task_button">
|
||||
<ion-icon name="list-outline"></ion-icon>
|
||||
<ion-label>Tasks</ion-label>
|
||||
</ion-tab-button>
|
||||
|
||||
<ion-tab-button tab="tab4">
|
||||
<ion-icon name="cart"></ion-icon>
|
||||
<ion-label>Wallet</ion-label>
|
||||
</ion-tab-button>
|
||||
<ion-tab-button tab="tab4">
|
||||
<ion-icon name="cart"></ion-icon>
|
||||
<ion-label>Wallet</ion-label>
|
||||
</ion-tab-button>
|
||||
|
||||
<ion-tab-button tab="tab5">
|
||||
<ion-icon name="ellipsis-horizontal-outline"></ion-icon>
|
||||
<ion-label>more</ion-label>
|
||||
</ion-tab-button>
|
||||
</ion-tab-bar>
|
||||
</div>
|
||||
</ion-tabs>
|
||||
|
||||
<ion-tab-button tab="tab5">
|
||||
<ion-icon name="ellipsis-horizontal-outline"></ion-icon>
|
||||
<ion-label>more</ion-label>
|
||||
</ion-tab-button>
|
||||
</ion-tab-bar>
|
||||
</div>
|
||||
</ion-tabs>
|
||||
<ng-template #elseFulltag>
|
||||
|
||||
<ion-tabs class="bottom_bar_tabs">
|
||||
<div class="bottom_bardiv">
|
||||
<ion-tab-bar slot="bottom" class="bottom_bar">
|
||||
<ion-tab-button tab="tab1">
|
||||
<ion-icon name="home"></ion-icon>
|
||||
<ion-label>Home</ion-label>
|
||||
</ion-tab-button>
|
||||
|
||||
<ion-tab-button tab="tab2">
|
||||
<ion-icon name="reader"></ion-icon>
|
||||
<ion-label>Market</ion-label>
|
||||
</ion-tab-button>
|
||||
|
||||
<ion-tab-button tab="mytasks" class="task_button">
|
||||
<ion-icon name="list-outline"></ion-icon>
|
||||
<ion-label>Tasks</ion-label>
|
||||
</ion-tab-button>
|
||||
|
||||
<ion-tab-button tab="tab4">
|
||||
<ion-icon name="cart"></ion-icon>
|
||||
<ion-label>Wallet</ion-label>
|
||||
</ion-tab-button>
|
||||
|
||||
<ion-tab-button tab="tab5">
|
||||
<ion-icon name="ellipsis-horizontal-outline"></ion-icon>
|
||||
<ion-label>more</ion-label>
|
||||
</ion-tab-button>
|
||||
</ion-tab-bar>
|
||||
</div>
|
||||
</ion-tabs>
|
||||
|
||||
</ng-template>
|
||||
|
||||
|
||||
@@ -1,12 +1,5 @@
|
||||
/*
|
||||
Authors : initappz (Rahul Jograna)
|
||||
Website : https://initappz.com/
|
||||
App Name : E-Learning App Template
|
||||
This App Template Source code is licensed as per the
|
||||
terms found in the Website https://initappz.com/license
|
||||
Copyright and Good Faith Purchasers © 2021-present initappz.
|
||||
*/
|
||||
import { Component } from '@angular/core';
|
||||
import {SessionDataProviderService} from "../../store/session-data-provider.service";
|
||||
|
||||
@Component({
|
||||
selector: 'app-tabs',
|
||||
@@ -14,7 +7,10 @@ import { Component } from '@angular/core';
|
||||
styleUrls: ['tabs.page.scss']
|
||||
})
|
||||
export class TabsPage {
|
||||
accountType:string="FULL";
|
||||
|
||||
constructor() { }
|
||||
constructor(public sessionDataProviderService: SessionDataProviderService) {
|
||||
this.accountType = sessionDataProviderService.account_type;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user