|
@@ -41,7 +41,8 @@
|
|
|
<ion-list [inset]="true">
|
|
|
<ion-item lines="full">
|
|
|
<ion-avatar slot="start">
|
|
|
- <img alt="头像" src="https://ionicframework.com/docs/img/demos/avatar.svg" />
|
|
|
+ <img alt="头像" src="../../assets/1.jpg" />
|
|
|
+
|
|
|
</ion-avatar>
|
|
|
<ion-label>
|
|
|
{{currentUser?.get("name") || '昵称'}}
|
|
@@ -64,29 +65,96 @@
|
|
|
</ion-list>
|
|
|
</ion-card>
|
|
|
<!-- 列表 -->
|
|
|
+
|
|
|
+ <ion-list [inset]="true">
|
|
|
+ <ion-button *ngIf="!currentUser?.id" expand="block" routerLink="/user/login">登录</ion-button>
|
|
|
+ <ion-button *ngIf="currentUser?.id" fill="clear" expand="block" (click)="logout()">登出</ion-button>
|
|
|
+ </ion-list>
|
|
|
<ion-card class="myList">
|
|
|
<ion-list [inset]="true">
|
|
|
<ion-item button detail="true" routerLink="/lesson/me/userFollow">
|
|
|
+ <ion-icon name="people-sharp"></ion-icon>
|
|
|
<ion-label>
|
|
|
- <ion-note>关注</ion-note>
|
|
|
+ <ion-note>人物</ion-note>
|
|
|
</ion-label>
|
|
|
</ion-item>
|
|
|
<ion-item button detail="true" routerLink="/lesson/me/userTag">
|
|
|
+ <ion-icon name="gift"></ion-icon>
|
|
|
<ion-label>
|
|
|
- <ion-note>等级</ion-note>
|
|
|
+ <ion-note>礼物</ion-note>
|
|
|
</ion-label>
|
|
|
</ion-item>
|
|
|
<ion-item button detail="true" routerLink="/lesson/me/userCollection">
|
|
|
+ <ion-icon name="bulb"></ion-icon>
|
|
|
<ion-label>
|
|
|
- <ion-note>宠物档案</ion-note>
|
|
|
+ <ion-note>想法</ion-note>
|
|
|
</ion-label>
|
|
|
</ion-item>
|
|
|
</ion-list>
|
|
|
</ion-card>
|
|
|
- <ion-list [inset]="true">
|
|
|
- <ion-button *ngIf="!currentUser?.id" expand="block" routerLink="/user/login">登录</ion-button>
|
|
|
- <ion-button *ngIf="currentUser?.id" fill="clear" expand="block" (click)="logout()">登出</ion-button>
|
|
|
- </ion-list>
|
|
|
+
|
|
|
+
|
|
|
+ <ion-accordion-group [multiple]="true" [value]="['first', 'third']">
|
|
|
+ <ion-accordion value="first">
|
|
|
+ <ion-item slot="header" color="light">
|
|
|
+
|
|
|
+ <ion-label class="larger-font">🔔提醒</ion-label>
|
|
|
+ </ion-item>
|
|
|
+ <div class="ion-padding" slot="content">
|
|
|
+ <ion-item>
|
|
|
+ <ion-avatar slot="start">
|
|
|
+ <img alt="头像" src="../../assets/2.jpg" />
|
|
|
+ </ion-avatar>
|
|
|
+ <ion-label><span class="bold-text">葱葱</span><br>
|
|
|
+ <span class="small-orange-text">生日</span>🎂<br>
|
|
|
+ <span class="small-red-text">2024-7-01</span> </ion-label>
|
|
|
+ </ion-item>
|
|
|
+ <ion-item>
|
|
|
+ <ion-avatar slot="start">
|
|
|
+ <img alt="头像" src="../../assets/3.jpg" />
|
|
|
+ </ion-avatar>
|
|
|
+ <ion-label>
|
|
|
+ <span class="bold-text">影影</span><br>
|
|
|
+ <span class="small-orange-text">生日</span>🎂<br>
|
|
|
+ <span class="small-red-text">2024-7-03</span>
|
|
|
+ </ion-label>
|
|
|
+ </ion-item>
|
|
|
+ </div>
|
|
|
+ </ion-accordion>
|
|
|
+ <ion-accordion value="second">
|
|
|
+ <ion-item slot="header" color="light">
|
|
|
+ <ion-label class="larger-font">📌建议</ion-label>
|
|
|
+ </ion-item>
|
|
|
+ <div class="ion-padding" slot="content">
|
|
|
+ <ion-item>
|
|
|
+ <ion-avatar slot="start">
|
|
|
+ <img alt="头像" src="../../assets/2.jpg" />
|
|
|
+ </ion-avatar>
|
|
|
+ <ion-label><span class="bold-text">boss刘</span> <br>
|
|
|
+ <span class="small-orange-text">还没记录任何该人物的往来信息</span><br>
|
|
|
+ </ion-label>
|
|
|
+ </ion-item>
|
|
|
+ <ion-item>
|
|
|
+ <ion-avatar slot="start">
|
|
|
+ <img alt="头像" src="../../assets/3.jpg" />
|
|
|
+ </ion-avatar>
|
|
|
+ <ion-label>
|
|
|
+ <span class="bold-text">飞马智哥</span><br>
|
|
|
+ <span class="small-orange-text">还没添加该人物的关系</span><br>
|
|
|
+ </ion-label>
|
|
|
+ </ion-item>
|
|
|
+ </div>
|
|
|
+ </ion-accordion>
|
|
|
+ <ion-accordion value="third">
|
|
|
+ <ion-item slot="header" color="light">
|
|
|
+ <ion-label class="larger-font">🎡功能</ion-label>
|
|
|
+ </ion-item>
|
|
|
+ <div class="ion-padding" slot="content">Third Content</div>
|
|
|
+ </ion-accordion>
|
|
|
+ </ion-accordion-group>
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
<!-- 详细内容 -->
|
|
|
<!-- 导航 -->
|
|
|
<ion-card>
|