Browse Source

调度台新建工单重大BUG修复

seimin 1 year ago
parent
commit
9fca86def6

+ 2 - 2
src/app/views/fuwutai/fuwutai.component.ts

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

+ 0 - 3
src/app/views/work-order-log/work-order-log.component.html

@@ -49,6 +49,3 @@
49
     </div>
49
     </div>
50
   </div>
50
   </div>
51
 </div>
51
 </div>
52
-
53
-<!-- 遮罩 -->
54
-<app-mask *ngIf="maskFlag"></app-mask>