|
@@ -17,7 +17,7 @@ export class BusinessDataDetailModalComponent implements OnInit {
|
17
|
17
|
pageSize: number = 5;//表格每页展示条数
|
18
|
18
|
total: number = 0;//表格总数据量
|
19
|
19
|
searchCriteria:any = {
|
20
|
|
- stype: null,
|
|
20
|
+ stype: 0,
|
21
|
21
|
}
|
22
|
22
|
@Input() show: Boolean;
|
23
|
23
|
@Input() orderId: String;
|
|
@@ -87,10 +87,11 @@ export class BusinessDataDetailModalComponent implements OnInit {
|
87
|
87
|
}
|
88
|
88
|
|
89
|
89
|
// 获取标本类型
|
90
|
|
- specimentTypeList: any[] = [];
|
|
90
|
+ specimentTypeList: any[] = [{ id: 0, name: '全部' }];
|
91
|
91
|
getSpecimenType() {
|
92
|
92
|
this.mainService.getDictionary("list", "specimen_type").subscribe((data:any) => {
|
93
|
|
- this.specimentTypeList = data || [];
|
|
93
|
+ let specimentTypeList = [{ id: 0, name: '全部' }];
|
|
94
|
+ this.specimentTypeList = specimentTypeList.concat(data);
|
94
|
95
|
})
|
95
|
96
|
}
|
96
|
97
|
|