|
@@ -555,7 +555,7 @@ export class FuwutaiComponent implements OnInit {
|
555
|
555
|
ngOnInit() {
|
556
|
556
|
//防抖
|
557
|
557
|
this.changeInpSubject.pipe(debounceTime(500)).subscribe((v) => {
|
558
|
|
- this.searchApplicationDepartment(v);
|
|
558
|
+ v !== '' && this.searchApplicationDepartment(v);
|
559
|
559
|
});
|
560
|
560
|
this.onSearchTaskBuildSubject.pipe(debounceTime(500)).subscribe((v) => {
|
561
|
561
|
this.getTasktypeByPhone(v);
|
|
@@ -1561,7 +1561,7 @@ export class FuwutaiComponent implements OnInit {
|
1561
|
1561
|
this.callNumber = phone;
|
1562
|
1562
|
this.applyDept = null;
|
1563
|
1563
|
this.noArrives = []; //申请科室未到达工单
|
1564
|
|
- this.workTypesArrange = [];
|
|
1564
|
+ // this.workTypesArrange = [];
|
1565
|
1565
|
} else if (phone === "ks") {
|
1566
|
1566
|
let filter = this.applicationDepartmentList.filter(
|
1567
|
1567
|
(item) => item.id == this.applyDept
|