|
|
|
@@ -1,6 +1,7 @@ |
|
|
|
import { Component, OnInit } from '@angular/core'; |
|
|
|
import { Router } from '@angular/router'; |
|
|
|
import { Location } from '@angular/common'; |
|
|
|
import { MallService } from '../services/mall.service'; |
|
|
|
|
|
|
|
@Component({ |
|
|
|
selector: 'app-bookmark', |
|
|
|
@@ -12,10 +13,12 @@ export class BookmarkPage implements OnInit { |
|
|
|
|
|
|
|
constructor( |
|
|
|
private router: Router, |
|
|
|
private location: Location, |
|
|
|
private location: Location, |
|
|
|
private mallService: MallService |
|
|
|
) { } |
|
|
|
|
|
|
|
ngOnInit() { |
|
|
|
// this.mallService.getBookmarks().then((data) => console.log(data)); |
|
|
|
} |
|
|
|
|
|
|
|
ionViewDidEnter() { |
|
|
|
|