|
@@ -0,0 +1,61 @@
|
|
|
+<ion-header [translucent]="true">
|
|
|
+ <ion-toolbar>
|
|
|
+ <ion-buttons slot="start">
|
|
|
+ <ion-back-button defaultHref="/previous-page"></ion-back-button>
|
|
|
+ </ion-buttons>
|
|
|
+ <ion-title>moreplace</ion-title>
|
|
|
+ <ion-buttons slot="end">
|
|
|
+ <ion-button (click)="search()">
|
|
|
+ <ion-icon name="search"></ion-icon>
|
|
|
+ </ion-button>
|
|
|
+ </ion-buttons>
|
|
|
+ </ion-toolbar>
|
|
|
+</ion-header>
|
|
|
+
|
|
|
+<ion-content >
|
|
|
+ <ion-card>
|
|
|
+ <ion-card-content>
|
|
|
+ <ion-row>
|
|
|
+ <ion-col size="3" (click)="fetchMoreplace()">全部</ion-col>
|
|
|
+ <ion-col size="3" (click)="filterByCategory($event, '中国大陆')">中国大陆</ion-col>
|
|
|
+ <ion-col size="3" (click)="filterByCategory($event, '英国')">英国</ion-col>
|
|
|
+ <ion-col size="3" (click)="filterByCategory($event, '美国')">美国</ion-col>
|
|
|
+ </ion-row>
|
|
|
+ <ion-row>
|
|
|
+ <ion-col size="3" (click)="filterByCategory($event, '中国香港')">中国香港</ion-col>
|
|
|
+ <ion-col size="3" (click)="filterByCategory($event, '中国台湾')">中国台湾</ion-col>
|
|
|
+ <ion-col size="3" (click)="filterByCategory($event, '法国')">法国</ion-col>
|
|
|
+ <ion-col size="3" (click)="filterByCategory($event, '意大利')">意大利</ion-col>
|
|
|
+ </ion-row>
|
|
|
+ <ion-row>
|
|
|
+ <ion-col size="3" (click)="filterByCategory($event, '德国')">德国</ion-col>
|
|
|
+ <ion-col size="3" (click)="filterByCategory($event, '日本')">日本</ion-col>
|
|
|
+ <ion-col size="3" (click)="filterByCategory($event, '韩国')">韩国</ion-col>
|
|
|
+ </ion-row>
|
|
|
+ </ion-card-content>
|
|
|
+ </ion-card>
|
|
|
+
|
|
|
+ <ion-card>
|
|
|
+ <ion-card-content>
|
|
|
+ <ion-row>
|
|
|
+ <ion-col size="3" (click)="fetchMoreplace()">全部</ion-col>
|
|
|
+ <ion-col size="3" (click)="filterByCategory($event, '旅游景点')">旅游景点</ion-col>
|
|
|
+ <ion-col size="3" (click)="filterByCategory($event, '历史建筑')">历史建筑</ion-col>
|
|
|
+ <ion-col size="3" (click)="filterByCategory($event, '自然风光')">自然风光</ion-col>
|
|
|
+ </ion-row>
|
|
|
+ <ion-row>
|
|
|
+ <ion-col size="3" (click)="filterByCategory($event, '地标')">地标</ion-col>
|
|
|
+ <ion-col size="3" (click)="filterByCategory($event, '宗教场所')">宗教场所</ion-col>
|
|
|
+ <ion-col size="3" (click)="filterByCategory($event, '街道')">街道</ion-col>
|
|
|
+ <ion-col size="3" (click)="filterByCategory($event, '公园')">公园</ion-col>
|
|
|
+ </ion-row>
|
|
|
+ <ion-row>
|
|
|
+ <ion-col size="3" (click)="filterByCategory($event, '展馆')">展馆</ion-col>
|
|
|
+ <ion-col size="3" (click)="filterByCategory($event, '影视基地')">影视基地</ion-col>
|
|
|
+ <ion-col size="3" (click)="filterByCategory($event, '商用建筑')">商用建筑</ion-col>
|
|
|
+ <ion-col size="3" (click)="filterByCategory($event, '酒店')">酒店</ion-col>
|
|
|
+ </ion-row>
|
|
|
+ </ion-card-content>
|
|
|
+ </ion-card>
|
|
|
+
|
|
|
+</ion-content>
|