@@ -13,7 +13,7 @@
<ion-label text-wrap>
<ion-row>
<ion-col>
- <h2> {{ item.testName }}</h2>
+ <h2> {{ item.testName }}</h2>
</ion-col>
</ion-row>
@@ -33,9 +33,9 @@
<ion-col size="8">
- 100分
+ {{ item.score == null ? '--' : item.score }}分/及格{{ item.passingscore }}分
- <ion-col>
+ <ion-col [ngStyle]="{'color':getColor(item.manStatus)}">
{{ item.manStatusName }}
@@ -56,6 +56,22 @@ export class ExamonlineComponent implements OnInit {
}
});
+ getColor(manStatus){
+ switch (manStatus){
+ case 1:
+ return '#ff4900';
+ case 2:
+ return '#0000ff';
+ case 3:
+ return '#3880ff';
+ case 4:
+ return '#8b8b83';
+ case 5:
+ return '#19e218';
+ default:
+ return 'red';
+ }
async presentAlert(msg: string) {
const alert = await this.alertController.create({
header: '提示',