workers page

This commit is contained in:
CHIEFSOFT\ameye
2024-02-11 08:23:01 -05:00
parent c7690ec707
commit c2abc5e7c8
6 changed files with 32 additions and 13 deletions
@@ -1,4 +1,4 @@
<div style="height: 320px;" *ngIf="BANNER_MODE == 3; ">
<div style="height: 280px;" *ngIf="BANNER_MODE == 3; ">
<ion-grid class="extra-grid">
<ion-row>
<ion-col class="ext-col" (click)="activeTasks()">
@@ -8,12 +8,12 @@
.extra-grid{
margin: 10px 0px 10px 0px;
padding: 0px;
height: 160px;
height: 140px;
.ext-col{
padding: 5px;
//background-color: #2dd36f;
height: 160px;
height: 140px;
.ext-in{
&.bg{
background-image: url("https://www.wrenchboard.com/assets/images/apps/xt/task.png");
@@ -41,7 +41,7 @@
}
}
background-color: antiquewhite;
height: 150px;
height: 130px;
border-radius: 10px;
box-shadow: 1px 1px lightgray;
@@ -50,7 +50,7 @@
.ban-text{
font-size: 24px;
font-weight: bolder;
padding-top: 60px;
padding-top: 40px;
padding-left: 20px;
// color: #8b198e;
}
@@ -35,6 +35,7 @@ export class WorkersDashComponent implements OnInit {
public sessionDataProviderService: SessionDataProviderService,
public usersoffersDataService:UsersoffersDataService) {
this.refreshJobsData();
this.getJobsData();
}
ngOnInit() {}
@@ -81,16 +82,23 @@ export class WorkersDashComponent implements OnInit {
}
pastDue(){
//this.router.navigate(['activetask'],{state: item});
this.router.navigate(['tabs/mytasks']);
let item: {
'tab': 'PASTDUE'
};
this.router.navigate(['tabs/mytasks'],{state: item});
}
reView(){
///tabs/mytasks
this.router.navigate(['tabs/mytasks']);
let item: {
'tab': 'REVIEW'
};
this.router.navigate(['tabs/mytasks'],{state: item});
}
activeTasks(){
this.router.navigate(['tabs/mytasks']);
let item: {
'tab': 'ACTIVE'
};
this.router.navigate(['tabs/mytasks'],{state: item});
}
onDetails(item) {
// var pageToNavigate = 'detail';
+1 -1
View File
@@ -52,7 +52,7 @@
</ion-header>
<ion-content class="ion-padding">
<div class="boxed_contents">
<div class="boxed_contents" id="{{home_dash_type}}">
<app-dash-toptool></app-dash-toptool>
<div *ngIf="accountType == 'FAMILY'; else elseFulltag">
<app-familypending></app-familypending>
+9 -2
View File
@@ -14,7 +14,7 @@ export class MytasksPage implements OnInit {
tabs: any = 'tasks';
extraData:any;
active_offers_count:number =0;
active_job_count:number =0;
pastdue_job_count:number =0;
@@ -28,7 +28,10 @@ export class MytasksPage implements OnInit {
private wrenchService: WrenchService,
public tasksDataService:TasksDataService,
public usersoffersDataService:UsersoffersDataService
) { }
) {
// this.extraData = this.router.getCurrentNavigation().extras.state;
// debugger;
}
myOffersData :[];
ngOnInit() {
@@ -90,6 +93,10 @@ export class MytasksPage implements OnInit {
}
activeSeleted(item) {
this.router.navigate(['activetask'],{state: item});
}
// getPastDueJobsData(){
//
+4
View File
@@ -52,6 +52,10 @@ export class BannersDataService {
console.log("BANNERS RETURN->", this.bannerResult);
this.bannerData = this.bannerResult.result_list;
if ( this.bannerResult.home_dash_type != ''){
// debugger;
this.sessionDataProviderService.home_dash_type = this.bannerResult.home_dash_type;
}
this.homebannerCount = this.bannerData?.length;
}
);