diff --git a/src/app/pages/home/home.module.ts b/src/app/pages/home/home.module.ts
index 0cfca75..04e1483 100644
--- a/src/app/pages/home/home.module.ts
+++ b/src/app/pages/home/home.module.ts
@@ -13,6 +13,7 @@ import { TrackingComponent } from "../../components/tracking/tracking.component"
import { FastrewardComponent } from "../../components/fastreward/fastreward.component";
import { CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
import {LatestMarketComponent} from "../../components/latest-market/latest-market.component";
+import {HelpListingComponent} from "../../components/help-listing/help-listing.component";
// @NgModule({
// schemas: [CUSTOM_ELEMENTS_SCHEMA]
@@ -25,7 +26,7 @@ import {LatestMarketComponent} from "../../components/latest-market/latest-marke
IonicModule,
HomePageRoutingModule
],
- declarations: [HomePage,SuggestedlistComponent,FamilypendingComponent,TrackingComponent,FastrewardComponent,LatestMarketComponent],
+ declarations: [HomePage,SuggestedlistComponent,FamilypendingComponent,TrackingComponent,FastrewardComponent,LatestMarketComponent,HelpListingComponent],
schemas: [CUSTOM_ELEMENTS_SCHEMA]
})
export class HomePageModule { }
diff --git a/src/app/pages/home/home.page.html b/src/app/pages/home/home.page.html
index 484864f..437803a 100644
--- a/src/app/pages/home/home.page.html
+++ b/src/app/pages/home/home.page.html
@@ -176,34 +176,7 @@
-
-
-
-
- What is an Offer
-
-
-
-
-
-
-
- Family Account
-
- Second Content
-
-
-
- Post a Job
-
- Third Content
-
-
-
-
-
+
diff --git a/src/app/pages/home/home.page.ts b/src/app/pages/home/home.page.ts
index c421887..832258c 100644
--- a/src/app/pages/home/home.page.ts
+++ b/src/app/pages/home/home.page.ts
@@ -8,6 +8,7 @@ import { UserWalletService } from 'src/app/store/user-wallet.service';
import { LocTrcService } from "../../services/loc-trc.service";
import {MarketDataService} from "../../store/market-data.service";
import {BannersDataService} from "../../store/banners-data.service";
+import {HelpDataService} from "../../store/help-data.service";
//import * as stream from "stream";
@@ -38,7 +39,8 @@ export class HomePage implements OnInit {
public userWalletService: UserWalletService,
private locTrcService:LocTrcService,
public marketDataService:MarketDataService,
- public bannersDataService:BannersDataService
+ public bannersDataService:BannersDataService,
+ public helpDataService:HelpDataService
) {
this.accountType = sessionDataProviderService.account_type;
this.firstname = this.sessionDataProviderService.firstname;
@@ -277,6 +279,8 @@ allBlog(){
isModalOpen:boolean=false;
onHelp() {
+ this.helpDataService.getHelpData();
+
this.isModalOpen = true;
}
@@ -299,6 +303,4 @@ allBlog(){
onSearch() {
this.router.navigate(['search']);
}
-
-
}
diff --git a/src/app/store/REMEMBER.txt b/src/app/store/REMEMBER.txt
index a2893cd..7a10e34 100644
--- a/src/app/store/REMEMBER.txt
+++ b/src/app/store/REMEMBER.txt
@@ -76,6 +76,8 @@ ionic generate page jobmessage
ionic generate component latest-market
+ionic generate component help-listing
+
ionic generate service tasks-data
ionic generate service banners-data
ionic generate service usersoffers-data
diff --git a/src/app/store/help-data.service.ts b/src/app/store/help-data.service.ts
index b6d3fb3..41c2dd6 100644
--- a/src/app/store/help-data.service.ts
+++ b/src/app/store/help-data.service.ts
@@ -23,8 +23,6 @@ export class HelpDataService {
};
-
-
this.wrenchService.helpData(reqData).subscribe(
helpDataTotalResult => {
this.helpDataTotalResult = helpDataTotalResult;