my-drift-bottle.component_20241228114506.html 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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>
  16. <ion-list>
  17. <ion-item>
  18. <ion-label>
  19. <h2>我扔出的漂流瓶</h2>
  20. </ion-label>
  21. </ion-item>
  22. <section *ngIf="filteredDriftbottles.length > 0">
  23. <ion-card *ngFor="let bottle of filteredDriftbottles">
  24. <ion-card-header>
  25. <ion-card-title>{{ bottle.get('content') }}</ion-card-title>
  26. </ion-card-header>
  27. <ion-card-content>
  28. <p>扔出时间: {{ bottle.get('throwtime') }}</p>
  29. </ion-card-content>
  30. </ion-card>
  31. </section>
  32. <ion-item>
  33. <ion-label>
  34. <h2>我捞上的漂流瓶</h2>
  35. </ion-label>
  36. </ion-item>
  37. <section *ngIf="filteredDriftbottles2.length > 0">
  38. <ion-card *ngFor="let bottle of filteredDriftbottles2">
  39. <ion-card-header>
  40. <ion-card-title>{{ bottle.get('content') }}</ion-card-title>
  41. </ion-card-header>
  42. <ion-card-content class="card-content-with-button">
  43. <div class="content-section">
  44. <p>打捞时间: {{ bottle.get('catchtime') }}</p>
  45. </div>
  46. <div class="button-section">
  47. <ion-button (click)="rethrowBottle(bottle)" color="rgb(69, 166, 180)">扔回</ion-button>
  48. </div>
  49. </ion-card-content>
  50. </ion-card>
  51. </section>
  52. </ion-list>
  53. <div style="display: flex; justify-content: center; margin-top: auto;">
  54. <ion-button (click)="gothrowNewDriftbottle()" expand="full">
  55. 投掷新的漂流瓶
  56. </ion-button>
  57. </div>
  58. </ion-content>