|
@@ -53,7 +53,6 @@ export class QueryRangeComponent implements OnInit {
|
53
|
53
|
let queryType = this.validateForm.value.queryType;
|
54
|
54
|
let hospital;
|
55
|
55
|
let duty;
|
56
|
|
- let parent = this.validateForm.value.parent;
|
57
|
56
|
switch (queryType) {
|
58
|
57
|
case 1:
|
59
|
58
|
break;
|
|
@@ -69,7 +68,7 @@ export class QueryRangeComponent implements OnInit {
|
69
|
68
|
duty = this.dutyOneList.find(v => v.id == this.validateForm.value.dutyOne);
|
70
|
69
|
break;
|
71
|
70
|
}
|
72
|
|
- this.submitQueryRange.emit({queryType, hospital, duty, parent});
|
|
71
|
+ this.submitQueryRange.emit({queryType, hospital, duty});
|
73
|
72
|
this.hideModal();
|
74
|
73
|
}
|
75
|
74
|
|