my-drift-bottle.component_20241227163404.html 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <ion-header>
  2. <ion-toolbar>
  3. <div class="toolbar-content">
  4. <div class="button-container">
  5. <ion-button (click)="goDriftbottle()" fill="clear">
  6. <ion-icon name="chevron-back" slot="start"></ion-icon>返回
  7. </ion-button>
  8. </div>
  9. <ion-title class="title-text">
  10. 我的漂流瓶
  11. </ion-title>
  12. </div>
  13. </ion-toolbar>
  14. </ion-header>
  15. <ion-content [fullscreen]="true">
  16. <!-- <section *ngIf="thrownDriftbottles.length > 0">
  17. <h2 style="margin-left: 16px;">我扔出的漂流瓶</h2>
  18. <ion-card *ngFor="let bottle of thrownDriftbottles">
  19. <ion-card-header>
  20. <ion-card-title>{{ bottle.content }}</ion-card-title>
  21. </ion-card-header>
  22. <ion-card-content>
  23. <p>创建时间: {{ bottle.createdAt }}</p>
  24. </ion-card-content>
  25. </ion-card>
  26. </section> -->
  27. <section *ngIf="caughtDriftbottles.length > 0">
  28. <h2 style="margin-left: 16px;">我捞上的漂流瓶</h2>
  29. <ion-card *ngFor="let bottle of caughtDriftbottles">
  30. <ion-card-header>
  31. <ion-card-title>{{ bottle.content }}</ion-card-title>
  32. </ion-card-header>
  33. <ion-card-content>
  34. <p>扔出时间: {{ bottle.createdAt }}</p>
  35. </ion-card-content>
  36. </ion-card>
  37. </section>
  38. </ion-content>