page-psysurvey.component.html 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <ion-header>
  2. <ion-toolbar>
  3. <div class="toolbar-content">
  4. <div class="button-container">
  5. <ion-button (click)="goTab1()" 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="filteredSurveys.length > 0; else noSurveys">
  17. <ion-card *ngFor="let survey of filteredSurveys">
  18. <ion-card-header>
  19. <ion-card-title>{{ survey.get('title') }}</ion-card-title>
  20. </ion-card-header>
  21. <ion-card-content>
  22. <p>发布者:{{ survey.get('publisher') }}</p>
  23. <p>类型:{{ survey.get('category') }}</p>
  24. <p>发布时间:{{ survey.get('publishtime') }}</p>
  25. <p>链接: <a [href]="survey.link" target="_blank">{{ survey.get('link') }}</a></p>
  26. </ion-card-content>
  27. </ion-card>
  28. </section>
  29. <ng-template #noSurveys>
  30. <div style="text-align: center; margin-top: 50px;">
  31. <p>暂无可用问卷。</p>
  32. </div>
  33. </ng-template>
  34. <div style="display: flex; justify-content: center; margin-top: auto;">
  35. <ion-button (click)="goPublishSurvey()" expand="full">
  36. 发布问卷
  37. </ion-button>
  38. </div>
  39. </ion-content>