|
@@ -3,7 +3,7 @@
|
|
<ion-buttons slot="start">
|
|
<ion-buttons slot="start">
|
|
<ion-back-button defaultHref="/previous-page"></ion-back-button>
|
|
<ion-back-button defaultHref="/previous-page"></ion-back-button>
|
|
</ion-buttons>
|
|
</ion-buttons>
|
|
- <ion-title>moreplace</ion-title>
|
|
|
|
|
|
+ <ion-title>地点</ion-title>
|
|
<ion-buttons slot="end">
|
|
<ion-buttons slot="end">
|
|
<ion-button (click)="search()">
|
|
<ion-button (click)="search()">
|
|
<ion-icon name="search"></ion-icon>
|
|
<ion-icon name="search"></ion-icon>
|
|
@@ -12,7 +12,7 @@
|
|
</ion-toolbar>
|
|
</ion-toolbar>
|
|
</ion-header>
|
|
</ion-header>
|
|
|
|
|
|
-<ion-content >
|
|
|
|
|
|
+<ion-content>
|
|
<ion-card>
|
|
<ion-card>
|
|
<ion-card-content>
|
|
<ion-card-content>
|
|
<ion-row>
|
|
<ion-row>
|
|
@@ -54,4 +54,17 @@
|
|
</ion-card-content>
|
|
</ion-card-content>
|
|
</ion-card>
|
|
</ion-card>
|
|
|
|
|
|
|
|
+ <ion-list>
|
|
|
|
+ <ion-card *ngFor="let place of filteredPlaces">
|
|
|
|
+ <ion-card-header>
|
|
|
|
+ <ion-card-title>{{ place.get('city') }}</ion-card-title>
|
|
|
|
+ </ion-card-header>
|
|
|
|
+ <ion-card-content>
|
|
|
|
+ <p>地点:{{ place.get('name') }}</p>
|
|
|
|
+ <p>电影:{{ place.get('filmed')}}</p>
|
|
|
|
+ </ion-card-content>
|
|
|
|
+ <ion-button fill="clear" routerLink="/place/{{place.id}}">detail</ion-button>
|
|
|
|
+ </ion-card>
|
|
|
|
+ </ion-list>
|
|
|
|
+
|
|
</ion-content>
|
|
</ion-content>
|