您最多选择25个主题
主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
此仓库已存档。您可以查看文件和克隆,但不能推送或创建工单/合并请求。
|
- <section class="page-container">
- <header class="main-header">
- <div class="counter">
- <span> 0 </span>/{{ questionCount }}
- </div>
-
- <div class="duration">
- <svg-icon [applyClass]="true" class="icon" src="assets/custom-icons/information.svg"></svg-icon>
- {{ timeCounter.hours }} : {{ timeCounter.minutes }} : {{ timeCounter.seconds }}
- </div>
-
- <button> <svg-icon [applyClass]="true" class="icon" src="assets/custom-icons/information.svg"></svg-icon> </button>
- </header>
-
- <ul class="category-list" *ngFor="let category of testData.categoryList; let i = index;">
- <header>
- <h5> {{ category.heading }} </h5>
- <span class="count"> {{ category.unitValue }} x {{ category.questions.length }} = {{ category.unitValue * category.questions.length }} </span>
- </header>
- <li *ngFor="let question of category.questions; let j = index;">
- <app-question [question]="question" [index]="j + 1"></app-question>
- </li>
- </ul>
- </section>
|