diff --git a/src/app/pages/family/family.page.html b/src/app/pages/family/family.page.html index 3039ea5..3a44572 100644 --- a/src/app/pages/family/family.page.html +++ b/src/app/pages/family/family.page.html @@ -44,8 +44,8 @@ Tasks - - DECIDE THIS + + Pending @@ -116,12 +116,12 @@ -
+
- Why Using Figma ? + {{item.title}} 10 mins
@@ -131,69 +131,69 @@
-
+
- 4.8 (5456 Reviews) + 0 Items
- See all +
-
- -
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + -
+
- Jonathon Williams + {{item.title}}
- - 5 + + {{item.status_text}}
- +
- The course is very good. the experience of the menter is very clear and easy to understand + {{item.description}}
diff --git a/src/app/pages/family/family.page.ts b/src/app/pages/family/family.page.ts index 8172e1e..aa16196 100644 --- a/src/app/pages/family/family.page.ts +++ b/src/app/pages/family/family.page.ts @@ -25,6 +25,7 @@ export class FamilyPage implements OnInit { } ngOnInit() { this.getFamilyData(); + this.getFamilyPeningData(); } onBack() { @@ -63,4 +64,24 @@ export class FamilyPage implements OnInit { } + familyPendingTotalData:any; + familyPendingData: []; + getFamilyPeningData(){ + this.usrData = {action:22010, + member_id: this.sessionDataProviderService.member_id, + uid: this.sessionDataProviderService.member_uid, + sessionid: this.sessionDataProviderService.session , + limit:20, page:1,offset: 0} + + this.wrenchService.getFamilyPeningList(this.usrData).subscribe( + familyPendingTotalData => { + this.familyPendingTotalData = familyPendingTotalData; + console.log("familyPendingTotalData RETURN->", this.familyPendingTotalData); + this.familyPendingData = this.familyPendingTotalData.result_list; + // debugger; + console.log("FAMILY familyPendingData DATA->", this.familyPendingData); + } + ); + + } } diff --git a/src/app/pages/forgot/forgot.page.ts b/src/app/pages/forgot/forgot.page.ts index 6ce40cb..43c6cca 100644 --- a/src/app/pages/forgot/forgot.page.ts +++ b/src/app/pages/forgot/forgot.page.ts @@ -124,7 +124,7 @@ export class ForgotPage implements OnInit { this.wrenchService.verifyPassReset(this.verifyData).subscribe( resetResult => { this.resetResult = resetResult; - console.log("INTERNAL RETURN->" + this.resetResult); + console.log("verifyPassReset ==> ==>INTERNAL RETURN->" + this.resetResult); /* 'm_uid' => string '43c766d9-403d-4125-9983-63c21960b187' (length=36) 'password_reset_id' => string '109' (length=3) diff --git a/src/app/services/wrench.service.ts b/src/app/services/wrench.service.ts index 1431439..1b52cb1 100644 --- a/src/app/services/wrench.service.ts +++ b/src/app/services/wrench.service.ts @@ -76,6 +76,9 @@ export class WrenchService { getFamilyList(usrData) { return this.getPostData("familylist", usrData); } + getFamilyPeningList(usrData) { + return this.getPostData("familywaitingtasks", usrData); + } getUserWallets(usrData) { return this.getPostData("getwallets", usrData); }