Angular LMS app
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
此仓库已存档。您可以查看文件和克隆,但不能推送或创建工单/合并请求。
 
 
 
 

25 行
1.0 KiB

  1. <section class="page-container">
  2. <header class="main-header">
  3. <div class="counter">
  4. <span> 0 </span>/{{ questionCount }}
  5. </div>
  6. <div class="duration">
  7. <svg-icon [applyClass]="true" class="icon" src="assets/custom-icons/information.svg"></svg-icon>
  8. {{ timeCounter.hours }} : {{ timeCounter.minutes }} : {{ timeCounter.seconds }}
  9. </div>
  10. <button> <svg-icon [applyClass]="true" class="icon" src="assets/custom-icons/information.svg"></svg-icon> </button>
  11. </header>
  12. <ul class="category-list" *ngFor="let category of testData.categoryList; let i = index;">
  13. <header>
  14. <h5> {{ category.heading }} </h5>
  15. <span class="count"> {{ category.unitValue }} x {{ category.questions.length }} = {{ category.unitValue * category.questions.length }} </span>
  16. </header>
  17. <li *ngFor="let question of category.questions; let j = index;">
  18. <app-question [question]="question" [index]="j + 1"></app-question>
  19. </li>
  20. </ul>
  21. </section>