Angular Web App
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 
 

71 行
2.2 KiB

  1. <header class="tab-header">
  2. <h2>
  3. Investigating Business Entities and Individuals
  4. </h2>
  5. </header>
  6. <section class="bread-crumbs">
  7. <span [routerLink]="['/tabs/e-services']"> E-Services </span> /
  8. <span class="current-page"> Investigating Business Entities and Individuals </span>
  9. </section>
  10. <app-closing-remarks
  11. *ngIf="state === 'CLOSING REMARKS'"
  12. [isNonCompliant]="isNonCompliant"
  13. ></app-closing-remarks>
  14. <app-check-status
  15. *ngIf="!canExecute && state !== 'CLOSING REMARKS'"
  16. [status]="state"
  17. [assignedTo]="executingRole"
  18. ></app-check-status>
  19. <ng-container *ngIf="canExecute && state !== 'CLOSING REMARKS'">
  20. <app-view-case-details
  21. *ngIf="state === 'VIEW INITIAL DETAILS'"
  22. [hasEnoughData]="hasEnoughData"
  23. (updateHasEnoughData)="hasEnoughData = $event"
  24. ></app-view-case-details>
  25. <app-modify-case-details
  26. *ngIf="state === 'ENTER MORE DETAILS'"
  27. ></app-modify-case-details>
  28. <app-assign-panel
  29. *ngIf="state === 'ASSIGN COMMITTEE'"
  30. (onSelectedCandidatesUpdate)="handleSelectedCandidates($event)"
  31. ></app-assign-panel>
  32. <app-review-non-compliance
  33. *ngIf="state === 'REVIEW NON COMPLIANCE'"
  34. [panelRemarks]="panelRemarks"
  35. [isNonCompliant]="isNonCompliant"
  36. (onNonComplianceUpdate)="updateIsNonCompliant($event)"
  37. ></app-review-non-compliance>
  38. <app-concur-compliance-review
  39. *ngIf="state === 'CONCUR COMPLIANCE REVIEW'"
  40. [isConcurring]="isPanelConcurring"
  41. [remarks]="panelRemarks"
  42. (onIsConcurringUpdate)="isPanelConcurring = $event"
  43. (onRemarksUpdate)="updatePanelRemarks($event)"
  44. ></app-concur-compliance-review>
  45. <app-prepare-preliminary-letter
  46. *ngIf="state === 'PREPARE PRELIMINARY LETTER'"
  47. ></app-prepare-preliminary-letter>
  48. <app-respond-to-preliminary-letter
  49. *ngIf="state === 'RESPOND TO PRELIMINARY LETTER'"
  50. ></app-respond-to-preliminary-letter>
  51. <div class="form-action-buttons">
  52. <button class="common-button neutral" *ngIf="stateHistory.length > 0" (click)="goBack()">
  53. Back
  54. </button>
  55. <button class="common-button" (click)="proceed()">
  56. Proceed
  57. </button>
  58. </div>
  59. </ng-container>