page-psysurvey.component_20241223214953.html 965 B

1234567891011121314151617181920212223242526272829303132333435
  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">
  17. <ion-card *ngFor="let survey of filteredSurveys">
  18. <ion-card-header>
  19. <ion-card-title>{{ survey.title }}</ion-card-title>
  20. </ion-card-header>
  21. <ion-card-content>
  22. <p>链接: <a [href]="survey.link" target="_blank">{{ survey.link }}</a></p>
  23. </ion-card-content>
  24. </ion-card>
  25. </section>
  26. <div style="display: flex; justify-content: center; margin-top: auto;">
  27. <ion-button (click)="goPublishSurvey()" expand="full">
  28. 发布问卷
  29. </ion-button>
  30. </div>
  31. </ion-content>