|
@@ -9,19 +9,19 @@
|
|
|
|
|
|
</ion-toolbar>
|
|
|
<div class="user-actions">
|
|
|
- <ion-button color="light">
|
|
|
+ <ion-button color="#255,255,255">
|
|
|
<ion-icon name="document"></ion-icon>
|
|
|
我的订单
|
|
|
</ion-button>
|
|
|
- <ion-button color="light">
|
|
|
+ <ion-button color="#255,255,255">
|
|
|
<ion-icon name="cart"></ion-icon>
|
|
|
购物车
|
|
|
</ion-button>
|
|
|
- <ion-button color="light">
|
|
|
+ <ion-button color="#255,255,255">
|
|
|
<ion-icon name="ticket"></ion-icon>
|
|
|
红包/卡券
|
|
|
</ion-button>
|
|
|
- <ion-button color="light">
|
|
|
+ <ion-button color="#255,255,255">
|
|
|
<ion-icon name="time"></ion-icon>
|
|
|
浏览记录
|
|
|
</ion-button>
|
|
@@ -51,20 +51,26 @@
|
|
|
<!-- Content for each segment -->
|
|
|
<ion-grid *ngIf="segmentModel === 'aiRecommend'">
|
|
|
<!-- AI推荐内容 -->
|
|
|
- <ion-row>
|
|
|
- <ion-col size="6" *ngFor="let item of aiRecommendItems">
|
|
|
- <ion-card>
|
|
|
- <img src="{{item.image}}" />
|
|
|
- <ion-card-content>
|
|
|
- <ion-label>{{item.label}}</ion-label>
|
|
|
- </ion-card-content>
|
|
|
- </ion-card>
|
|
|
- </ion-col>
|
|
|
- </ion-row>
|
|
|
+ <div class="column-wrapper">
|
|
|
+ <ion-card *ngFor="let item of aiRecommendItems">
|
|
|
+ <img src="{{item.image}}" />
|
|
|
+ <ion-card-content>
|
|
|
+ <ion-label>{{item.label}}</ion-label>
|
|
|
+ </ion-card-content>
|
|
|
+ </ion-card>
|
|
|
+ </div>
|
|
|
</ion-grid>
|
|
|
|
|
|
<ion-grid *ngIf="segmentModel === 'seasonHot'">
|
|
|
<!-- 当季热门内容 -->
|
|
|
+ <div class="column-wrapper">
|
|
|
+ <ion-card *ngFor="let item of seasonHotItems">
|
|
|
+ <img src="{{item.image}}" />
|
|
|
+ <ion-card-content>
|
|
|
+ <ion-label>{{item.label}}</ion-label>
|
|
|
+ </ion-card-content>
|
|
|
+ </ion-card>
|
|
|
+ </div>
|
|
|
</ion-grid>
|
|
|
|
|
|
<ion-grid *ngIf="segmentModel === 'styleChange'">
|
|
@@ -78,4 +84,10 @@
|
|
|
<ion-grid *ngIf="segmentModel === 'favoriteProducts'">
|
|
|
<!-- 收藏商品内容 -->
|
|
|
</ion-grid>
|
|
|
+
|
|
|
+ <ion-fab vertical="bottom" horizontal="end" slot="fixed">
|
|
|
+ <ion-fab-button (click)="toUp()" color="light">
|
|
|
+ <ion-icon name="arrow-up"></ion-icon>
|
|
|
+ </ion-fab-button>
|
|
|
+ </ion-fab>
|
|
|
</ion-content>
|