seimin 3 weken geleden
bovenliggende
commit
03aaa57054

File diff suppressed because it is too large
+ 1 - 1
src/app/views/batch-inspection/batch-inspection.component.html


File diff suppressed because it is too large
+ 1 - 1
src/app/views/inspect-closed-loop-view/inspect-closed-loop-view.component.html


File diff suppressed because it is too large
+ 4 - 4
src/app/views/patient-inspect-log-detail/patient-inspect-log-detail.component.html


+ 2 - 2
src/app/views/patient-inspect-log-detail/patient-inspect-log-detail.component.ts

@@ -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
 

File diff suppressed because it is too large
+ 1 - 1
src/app/views/patient-inspect-log/patient-inspect-log.component.html