Quellcode durchsuchen

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

seimin vor 1 Jahr
Ursprung
Commit
9fca86def6

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

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

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

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