|
@@ -39,7 +39,7 @@ export class PatientInspectLogDetailComponent implements OnInit {
|
39
|
39
|
) {}
|
40
|
40
|
maskFlag: any = false;
|
41
|
41
|
id: number; //工单id
|
42
|
|
- orderInfo: any; //详情信息
|
|
42
|
+ orderInfo: any = {}; //详情信息
|
43
|
43
|
promptContent: string; //操作提示框提示信息
|
44
|
44
|
ifSuccess: boolean; //操作成功/失败
|
45
|
45
|
promptInfo: string; //操作结果提示信息
|
|
@@ -66,7 +66,7 @@ export class PatientInspectLogDetailComponent implements OnInit {
|
66
|
66
|
this.message.remove(this.maskFlag);
|
67
|
67
|
this.maskFlag = false;
|
68
|
68
|
}
|
69
|
|
- this.orderInfo = data.data;
|
|
69
|
+ this.orderInfo = data.data || {};
|
70
|
70
|
});
|
71
|
71
|
}
|
72
|
72
|
|