|
@@ -349,13 +349,13 @@
|
349
|
349
|
</div>
|
350
|
350
|
<div class="nums borderB nurseNav" nz-row *ngSwitchDefault>
|
351
|
351
|
<div class="nav">
|
352
|
|
- <div class="navItem" *ngFor="let item of pagePermissionConfigList">
|
|
352
|
+ <div class="navItem" *ngFor="let item of pagePermissionConfigList" (click)="buildQuick(item)">
|
353
|
353
|
<div class="navIcon" [ngClass]="backColorComputed(item.icon.extra1)"><i class="icon_transport" [ngClass]="[item.icon.extra1]"></i></div>
|
354
|
354
|
<div class="navContent">
|
355
|
355
|
<h2>{{item.name}}</h2>
|
356
|
356
|
<div class="navSpecimen" *ngIf="item.urgentFlag || item.ordinaryFlag">
|
357
|
|
- <span *ngIf="item.urgentFlag">急:<span class="red">{{ specimenWorkOrderMsg.specimenCount ? specimenWorkOrderMsg.specimenCount.urgent : 0 }}</span></span>
|
358
|
|
- <span *ngIf="item.ordinaryFlag">普:{{ specimenWorkOrderMsg.specimenCount ? specimenWorkOrderMsg.specimenCount.noUrgent : 0 }}</span>
|
|
357
|
+ <span *ngIf="item.urgentFlag" (click)="changeSpeDetail($event, 1)">急:<span class="red">{{ specimenWorkOrderMsg.specimenCount ? specimenWorkOrderMsg.specimenCount.urgent : 0 }}</span></span>
|
|
358
|
+ <span *ngIf="item.ordinaryFlag" (click)="changeSpeDetail($event, 0)">普:{{ specimenWorkOrderMsg.specimenCount ? specimenWorkOrderMsg.specimenCount.noUrgent : 0 }}</span>
|
359
|
359
|
</div>
|
360
|
360
|
</div>
|
361
|
361
|
</div>
|
|
@@ -531,52 +531,21 @@
|
531
|
531
|
<div class="otherBoxInner">
|
532
|
532
|
<div class="otherBox-nav">
|
533
|
533
|
<div class="otherBox-nav__head">
|
534
|
|
- <input
|
535
|
|
- nz-input
|
536
|
|
- placeholder="请输入关键字"
|
537
|
|
- [(ngModel)]="otherSearch"
|
538
|
|
- (ngModelChange)="otherSearchChange()"
|
539
|
|
- />
|
|
534
|
+ <input nz-input placeholder="请输入关键字" [(ngModel)]="otherSearch" (ngModelChange)="otherSearchChange()" />
|
540
|
535
|
</div>
|
541
|
|
- <overlay-scrollbars
|
542
|
|
- #osComponentRef2
|
543
|
|
- class="otherBox-nav__main"
|
544
|
|
- [ngStyle]="{ height: '100%' }"
|
545
|
|
- >
|
546
|
|
- <div
|
547
|
|
- class="otherBox-nav__mainInner"
|
548
|
|
- *ngIf="!oLoading && othersList[checkedTableType]?.length > 0"
|
549
|
|
- >
|
550
|
|
- <div
|
551
|
|
- [sortablejs]="othersList[checkedTableType]"
|
552
|
|
- [sortablejsOptions]="othersListOptions"
|
553
|
|
- class="w100"
|
554
|
|
- >
|
555
|
|
- <div
|
556
|
|
- class="otherBox-nav__mainItem"
|
557
|
|
- *ngFor="let item of othersList[checkedTableType]"
|
558
|
|
- (click)="otherClick(item)"
|
559
|
|
- [ngClass]="{ active: selectOtherId == item.id }"
|
560
|
|
- [title]="item.taskName"
|
561
|
|
- >
|
|
536
|
+ <overlay-scrollbars #osComponentRef2 class="otherBox-nav__main" [ngStyle]="{ height: '100%' }">
|
|
537
|
+ <div class="otherBox-nav__mainInner" *ngIf="!oLoading && othersList[checkedTableType]?.length > 0">
|
|
538
|
+ <div [sortablejs]="othersList[checkedTableType]" [sortablejsOptions]="othersListOptions" class="w100">
|
|
539
|
+ <div class="otherBox-nav__mainItem" *ngFor="let item of othersList[checkedTableType]" (click)="otherClick(item)" [ngClass]="{ active: selectOtherId == item.id }" [title]="item.taskName">
|
562
|
540
|
{{ item.taskName }}
|
563
|
541
|
</div>
|
564
|
542
|
</div>
|
565
|
543
|
</div>
|
566
|
|
- <div
|
567
|
|
- class="otherBox-nav__mainInner noData"
|
568
|
|
- *ngIf="!oLoading && othersList[checkedTableType].length == 0"
|
569
|
|
- >
|
|
544
|
+ <div class="otherBox-nav__mainInner noData" *ngIf="!oLoading && othersList[checkedTableType].length == 0">
|
570
|
545
|
暂无数据
|
571
|
546
|
</div>
|
572
|
|
- <div
|
573
|
|
- class="otherBox-nav__mainInner oLoading"
|
574
|
|
- *ngIf="oLoading"
|
575
|
|
- >
|
576
|
|
- <img
|
577
|
|
- src="../../../assets/images/loading.gif"
|
578
|
|
- alt=""
|
579
|
|
- />
|
|
547
|
+ <div class="otherBox-nav__mainInner oLoading" *ngIf="oLoading">
|
|
548
|
+ <img src="../../../assets/images/loading.gif" alt="" />
|
580
|
549
|
<div>加载中...</div>
|
581
|
550
|
</div>
|
582
|
551
|
</overlay-scrollbars>
|
|
@@ -586,147 +555,43 @@
|
586
|
555
|
<!-- -----------------start------------------ -->
|
587
|
556
|
<div class="modalBody_box">
|
588
|
557
|
<div class="modalBody">
|
589
|
|
- <div
|
590
|
|
- class="modalBody_left"
|
591
|
|
- *ngIf="!nLoading && selectOtherId"
|
592
|
|
- >
|
593
|
|
- <overlay-scrollbars
|
594
|
|
- class="modalBody_left_box"
|
595
|
|
- #osComponentRef3
|
596
|
|
- style="height: calc(100vh - 263px)"
|
597
|
|
- >
|
|
558
|
+ <div class="modalBody_left" *ngIf="!nLoading && selectOtherId">
|
|
559
|
+ <overlay-scrollbars class="modalBody_left_box" #osComponentRef3 style="height: calc(100vh - 263px)">
|
598
|
560
|
<div class="modalBody_left_box">
|
599
|
|
- <div
|
600
|
|
- style="
|
601
|
|
- flex:1 1 auto;
|
602
|
|
- display: flex;
|
603
|
|
- flex-direction: column;
|
604
|
|
- justify-content: center;
|
605
|
|
- align-items: center;
|
606
|
|
- "
|
607
|
|
- >
|
608
|
|
- <div
|
609
|
|
- class="content txtC"
|
610
|
|
- *ngIf="
|
611
|
|
- buildMsg.status == 100013 ||
|
612
|
|
- buildMsg.status == 100014 ||
|
613
|
|
- buildMsg.status == 100015
|
614
|
|
- "
|
615
|
|
- >
|
616
|
|
- <div
|
617
|
|
- class="defeat"
|
618
|
|
- [innerHTML]="buildMsg.msg"
|
619
|
|
- ></div>
|
|
561
|
+ <div style="flex:1 1 auto; display: flex; flex-direction: column; justify-content: center; align-items: center;">
|
|
562
|
+ <div class="content txtC" *ngIf="buildMsg.status == 100013 || buildMsg.status == 100014 || buildMsg.status == 100015">
|
|
563
|
+ <div class="defeat" [innerHTML]="buildMsg.msg"></div>
|
620
|
564
|
</div>
|
621
|
565
|
<!-- 200 该任务类型运送过程暂未配置 -->
|
622
|
|
- <div
|
623
|
|
- class="content txtC"
|
624
|
|
- *ngIf="
|
625
|
|
- buildMsg.status == 200 &&
|
626
|
|
- buildType == 'bb'
|
627
|
|
- "
|
628
|
|
- >
|
629
|
|
- <div
|
630
|
|
- class="defeat"
|
631
|
|
- [innerHTML]="buildMsg.msg"
|
632
|
|
- ></div>
|
|
566
|
+ <div class="content txtC" *ngIf="buildMsg.status == 200 && buildType == 'bb'">
|
|
567
|
+ <div class="defeat" [innerHTML]="buildMsg.msg"></div>
|
633
|
568
|
</div>
|
634
|
569
|
<!-- 100009 该任务类型运送过程暂未配置 -->
|
635
|
|
- <div
|
636
|
|
- class="content txtC"
|
637
|
|
- *ngIf="buildMsg.status == 100009"
|
638
|
|
- >
|
639
|
|
- <div
|
640
|
|
- class="defeat"
|
641
|
|
- [innerHTML]="buildMsg.msg"
|
642
|
|
- ></div>
|
|
570
|
+ <div class="content txtC" *ngIf="buildMsg.status == 100009">
|
|
571
|
+ <div class="defeat" [innerHTML]="buildMsg.msg"></div>
|
643
|
572
|
</div>
|
644
|
573
|
<!-- 100010 系统未查询到该任务类型关联信息 -->
|
645
|
|
- <div
|
646
|
|
- class="content txtC"
|
647
|
|
- *ngIf="buildMsg.status == 100010"
|
648
|
|
- >
|
649
|
|
- <div
|
650
|
|
- class="defeat"
|
651
|
|
- [innerHTML]="buildMsg.msg"
|
652
|
|
- ></div>
|
|
574
|
+ <div class="content txtC" *ngIf="buildMsg.status == 100010">
|
|
575
|
+ <div class="defeat" [innerHTML]="buildMsg.msg"></div>
|
653
|
576
|
</div>
|
654
|
577
|
<!-- 100012 (护士端一键建单展示策略)直接取msg -->
|
655
|
|
- <div
|
656
|
|
- class="content txtC"
|
657
|
|
- *ngIf="buildMsg.status == 100012"
|
658
|
|
- >
|
659
|
|
- <div
|
660
|
|
- class="defeat"
|
661
|
|
- [innerHTML]="buildMsg.msg"
|
662
|
|
- ></div>
|
|
578
|
+ <div class="content txtC" *ngIf="buildMsg.status == 100012">
|
|
579
|
+ <div class="defeat" [innerHTML]="buildMsg.msg"></div>
|
663
|
580
|
</div>
|
664
|
581
|
<!-- 100013 (护士端一键建单展示策略)取起点科室,和mgs值展示 -->
|
665
|
|
- <div
|
666
|
|
- class="content"
|
667
|
|
- *ngIf="buildMsg.status == 100013"
|
668
|
|
- >
|
|
582
|
+ <div class="content" *ngIf="buildMsg.status == 100013">
|
669
|
583
|
<div>
|
670
|
|
- <form
|
671
|
|
- nz-form
|
672
|
|
- [formGroup]="shortcutForm"
|
673
|
|
- class="shortcutForm"
|
674
|
|
- >
|
|
584
|
+ <form nz-form [formGroup]="shortcutForm" class="shortcutForm">
|
675
|
585
|
<nz-form-item>
|
676
|
|
- <nz-form-label
|
677
|
|
- [nzSm]="6"
|
678
|
|
- [nzXs]="24"
|
679
|
|
- nzRequired
|
680
|
|
- nzFor="originOffice"
|
681
|
|
- >起点科室
|
682
|
|
- </nz-form-label>
|
683
|
|
- <nz-form-control
|
684
|
|
- nzErrorTip="请选择起点科室!"
|
685
|
|
- >
|
686
|
|
- <nz-select
|
687
|
|
- class="w100"
|
688
|
|
- formControlName="originOffice"
|
689
|
|
- [nzDropdownMatchSelectWidth]="
|
690
|
|
- false
|
691
|
|
- "
|
692
|
|
- nzServerSearch
|
693
|
|
- nzShowSearch
|
694
|
|
- (nzOnSearch)="
|
695
|
|
- searchDept(
|
696
|
|
- 'start',
|
697
|
|
- buildMsg,
|
698
|
|
- $event
|
699
|
|
- )
|
700
|
|
- "
|
701
|
|
- nzPlaceHolder="请选择起点科室"
|
702
|
|
- >
|
703
|
|
- <ng-container
|
704
|
|
- *ngFor="
|
705
|
|
- let option of buildMsg.start
|
706
|
|
- .start.list
|
707
|
|
- "
|
708
|
|
- >
|
709
|
|
- <nz-option
|
710
|
|
- *ngIf="true"
|
711
|
|
- [nzLabel]="
|
712
|
|
- deptDisplay == 2
|
713
|
|
- ? option.deptalias
|
714
|
|
- : option.dept
|
715
|
|
- "
|
716
|
|
- [nzValue]="option.id"
|
717
|
|
- >
|
|
586
|
+ <nz-form-label [nzSm]="6" [nzXs]="24" nzRequired nzFor="originOffice">起点科室</nz-form-label>
|
|
587
|
+ <nz-form-control nzErrorTip="请选择起点科室!">
|
|
588
|
+ <nz-select class="w100" formControlName="originOffice" [nzDropdownMatchSelectWidth]="false" nzServerSearch nzShowSearch (nzOnSearch)="searchDept('start', buildMsg, $event)" nzPlaceHolder="请选择起点科室">
|
|
589
|
+ <ng-container *ngFor="let option of buildMsg.start.start.list">
|
|
590
|
+ <nz-option *ngIf="true" [nzLabel]="deptDisplay == 2 ? option.deptalias : option.dept" [nzValue]="option.id">
|
718
|
591
|
</nz-option>
|
719
|
592
|
</ng-container>
|
720
|
|
- <nz-option
|
721
|
|
- *ngIf="false"
|
722
|
|
- nzDisabled
|
723
|
|
- nzCustomContent
|
724
|
|
- >
|
725
|
|
- <i
|
726
|
|
- nz-icon
|
727
|
|
- nzType="loading"
|
728
|
|
- class="loading-icon"
|
729
|
|
- ></i>
|
|
593
|
+ <nz-option *ngIf="false" nzDisabled nzCustomContent>
|
|
594
|
+ <i nz-icon nzType="loading" class="loading-icon"></i>
|
730
|
595
|
搜索中...
|
731
|
596
|
</nz-option>
|
732
|
597
|
</nz-select>
|
|
@@ -736,72 +601,19 @@
|
736
|
601
|
</div>
|
737
|
602
|
</div>
|
738
|
603
|
<!-- 100014 (护士端一键建单展示策略)取终点科室和msg 值展示 -->
|
739
|
|
- <div
|
740
|
|
- class="content"
|
741
|
|
- *ngIf="buildMsg.status == 100014"
|
742
|
|
- >
|
|
604
|
+ <div class="content" *ngIf="buildMsg.status == 100014">
|
743
|
605
|
<div>
|
744
|
|
- <form
|
745
|
|
- nz-form
|
746
|
|
- [formGroup]="shortcutForm"
|
747
|
|
- class="shortcutForm"
|
748
|
|
- >
|
|
606
|
+ <form nz-form [formGroup]="shortcutForm" class="shortcutForm">
|
749
|
607
|
<nz-form-item>
|
750
|
|
- <nz-form-label
|
751
|
|
- [nzSm]="6"
|
752
|
|
- [nzXs]="24"
|
753
|
|
- nzRequired
|
754
|
|
- nzFor="targetOffice"
|
755
|
|
- >目标科室
|
756
|
|
- </nz-form-label>
|
757
|
|
- <nz-form-control
|
758
|
|
- nzErrorTip="请选择目标科室!"
|
759
|
|
- >
|
760
|
|
- <nz-select
|
761
|
|
- class="w100"
|
762
|
|
- formControlName="targetOffice"
|
763
|
|
- [nzDropdownMatchSelectWidth]="
|
764
|
|
- false
|
765
|
|
- "
|
766
|
|
- nzServerSearch
|
767
|
|
- nzShowSearch
|
768
|
|
- (nzOnSearch)="
|
769
|
|
- searchDept(
|
770
|
|
- 'target',
|
771
|
|
- buildMsg,
|
772
|
|
- $event
|
773
|
|
- )
|
774
|
|
- "
|
775
|
|
- nzAllowClear
|
776
|
|
- nzPlaceHolder="请选择目标科室"
|
777
|
|
- >
|
778
|
|
- <ng-container
|
779
|
|
- *ngFor="
|
780
|
|
- let option of buildMsg.end
|
781
|
|
- .end.list
|
782
|
|
- "
|
783
|
|
- >
|
784
|
|
- <nz-option
|
785
|
|
- *ngIf="true"
|
786
|
|
- [nzLabel]="
|
787
|
|
- deptDisplay == 2
|
788
|
|
- ? option.deptalias
|
789
|
|
- : option.dept
|
790
|
|
- "
|
791
|
|
- [nzValue]="option.id"
|
792
|
|
- >
|
|
608
|
+ <nz-form-label [nzSm]="6" [nzXs]="24" nzRequired nzFor="targetOffice">目标科室</nz-form-label>
|
|
609
|
+ <nz-form-control nzErrorTip="请选择目标科室!">
|
|
610
|
+ <nz-select class="w100" formControlName="targetOffice" [nzDropdownMatchSelectWidth]="false" nzServerSearch nzShowSearch (nzOnSearch)="searchDept('target', buildMsg, $event)" nzAllowClear nzPlaceHolder="请选择目标科室">
|
|
611
|
+ <ng-container *ngFor="let option of buildMsg.end.end.list">
|
|
612
|
+ <nz-option *ngIf="true" [nzLabel]="deptDisplay == 2 ? option.deptalias : option.dept" [nzValue]="option.id">
|
793
|
613
|
</nz-option>
|
794
|
614
|
</ng-container>
|
795
|
|
- <nz-option
|
796
|
|
- *ngIf="false"
|
797
|
|
- nzDisabled
|
798
|
|
- nzCustomContent
|
799
|
|
- >
|
800
|
|
- <i
|
801
|
|
- nz-icon
|
802
|
|
- nzType="loading"
|
803
|
|
- class="loading-icon"
|
804
|
|
- ></i>
|
|
615
|
+ <nz-option *ngIf="false" nzDisabled nzCustomContent>
|
|
616
|
+ <i nz-icon nzType="loading" class="loading-icon"></i>
|
805
|
617
|
搜索中...
|
806
|
618
|
</nz-option>
|
807
|
619
|
</nz-select>
|
|
@@ -811,131 +623,34 @@
|
811
|
623
|
</div>
|
812
|
624
|
</div>
|
813
|
625
|
<!-- 100015 (护士端一键建单展策略)起点科室和终点科室下拉展示 -->
|
814
|
|
- <div
|
815
|
|
- class="content"
|
816
|
|
- *ngIf="buildMsg.status == 100015"
|
817
|
|
- >
|
|
626
|
+ <div class="content" *ngIf="buildMsg.status == 100015">
|
818
|
627
|
<div>
|
819
|
|
- <form
|
820
|
|
- nz-form
|
821
|
|
- [formGroup]="shortcutForm"
|
822
|
|
- class="shortcutForm"
|
823
|
|
- >
|
|
628
|
+ <form nz-form [formGroup]="shortcutForm" class="shortcutForm">
|
824
|
629
|
<nz-form-item>
|
825
|
|
- <nz-form-label
|
826
|
|
- [nzSm]="6"
|
827
|
|
- [nzXs]="24"
|
828
|
|
- nzRequired
|
829
|
|
- nzFor="originOffice"
|
830
|
|
- >起点科室
|
831
|
|
- </nz-form-label>
|
832
|
|
- <nz-form-control
|
833
|
|
- nzErrorTip="请选择起点科室!"
|
834
|
|
- >
|
835
|
|
- <nz-select
|
836
|
|
- class="w100"
|
837
|
|
- formControlName="originOffice"
|
838
|
|
- [nzDropdownMatchSelectWidth]="
|
839
|
|
- false
|
840
|
|
- "
|
841
|
|
- nzServerSearch
|
842
|
|
- nzShowSearch
|
843
|
|
- (nzOnSearch)="
|
844
|
|
- searchDept(
|
845
|
|
- 'start',
|
846
|
|
- buildMsg,
|
847
|
|
- $event
|
848
|
|
- )
|
849
|
|
- "
|
850
|
|
- nzPlaceHolder="请选择起点科室"
|
851
|
|
- >
|
852
|
|
- <ng-container
|
853
|
|
- *ngFor="
|
854
|
|
- let option of buildMsg.start
|
855
|
|
- .start.list
|
856
|
|
- "
|
857
|
|
- >
|
858
|
|
- <nz-option
|
859
|
|
- *ngIf="true"
|
860
|
|
- [nzLabel]="
|
861
|
|
- deptDisplay == 2
|
862
|
|
- ? option.deptalias
|
863
|
|
- : option.dept
|
864
|
|
- "
|
865
|
|
- [nzValue]="option.id"
|
866
|
|
- >
|
|
630
|
+ <nz-form-label [nzSm]="6" [nzXs]="24" nzRequired nzFor="originOffice">起点科室</nz-form-label>
|
|
631
|
+ <nz-form-control nzErrorTip="请选择起点科室!">
|
|
632
|
+ <nz-select class="w100" formControlName="originOffice" [nzDropdownMatchSelectWidth]="false" nzServerSearch nzShowSearch (nzOnSearch)="searchDept('start', buildMsg, $event)" nzPlaceHolder="请选择起点科室">
|
|
633
|
+ <ng-container *ngFor="let option of buildMsg.start.start.list">
|
|
634
|
+ <nz-option *ngIf="true" [nzLabel]="deptDisplay == 2 ? option.deptalias : option.dept" [nzValue]="option.id">
|
867
|
635
|
</nz-option>
|
868
|
636
|
</ng-container>
|
869
|
|
- <nz-option
|
870
|
|
- *ngIf="false"
|
871
|
|
- nzDisabled
|
872
|
|
- nzCustomContent
|
873
|
|
- >
|
874
|
|
- <i
|
875
|
|
- nz-icon
|
876
|
|
- nzType="loading"
|
877
|
|
- class="loading-icon"
|
878
|
|
- ></i>
|
|
637
|
+ <nz-option *ngIf="false" nzDisabled nzCustomContent>
|
|
638
|
+ <i nz-icon nzType="loading" class="loading-icon"></i>
|
879
|
639
|
搜索中...
|
880
|
640
|
</nz-option>
|
881
|
641
|
</nz-select>
|
882
|
642
|
</nz-form-control>
|
883
|
643
|
</nz-form-item>
|
884
|
644
|
<nz-form-item>
|
885
|
|
- <nz-form-label
|
886
|
|
- [nzSm]="6"
|
887
|
|
- [nzXs]="24"
|
888
|
|
- nzRequired
|
889
|
|
- nzFor="targetOffice"
|
890
|
|
- >目标科室
|
891
|
|
- </nz-form-label>
|
892
|
|
- <nz-form-control
|
893
|
|
- nzErrorTip="请选择目标科室!"
|
894
|
|
- >
|
895
|
|
- <nz-select
|
896
|
|
- class="w100"
|
897
|
|
- formControlName="targetOffice"
|
898
|
|
- [nzDropdownMatchSelectWidth]="
|
899
|
|
- false
|
900
|
|
- "
|
901
|
|
- nzServerSearch
|
902
|
|
- nzShowSearch
|
903
|
|
- (nzOnSearch)="
|
904
|
|
- searchDept(
|
905
|
|
- 'target',
|
906
|
|
- buildMsg,
|
907
|
|
- $event
|
908
|
|
- )
|
909
|
|
- "
|
910
|
|
- nzPlaceHolder="请选择目标科室"
|
911
|
|
- >
|
912
|
|
- <ng-container
|
913
|
|
- *ngFor="
|
914
|
|
- let option of buildMsg.end
|
915
|
|
- .end.list
|
916
|
|
- "
|
917
|
|
- >
|
918
|
|
- <nz-option
|
919
|
|
- *ngIf="true"
|
920
|
|
- [nzLabel]="
|
921
|
|
- deptDisplay == 2
|
922
|
|
- ? option.deptalias
|
923
|
|
- : option.dept
|
924
|
|
- "
|
925
|
|
- [nzValue]="option.id"
|
926
|
|
- >
|
|
645
|
+ <nz-form-label [nzSm]="6" [nzXs]="24" nzRequired nzFor="targetOffice">目标科室</nz-form-label>
|
|
646
|
+ <nz-form-control nzErrorTip="请选择目标科室!">
|
|
647
|
+ <nz-select class="w100" formControlName="targetOffice" [nzDropdownMatchSelectWidth]="false" nzServerSearch nzShowSearch (nzOnSearch)="searchDept('target', buildMsg, $event)" nzPlaceHolder="请选择目标科室">
|
|
648
|
+ <ng-container *ngFor="let option of buildMsg.end.end.list">
|
|
649
|
+ <nz-option *ngIf="true" [nzLabel]="deptDisplay == 2 ? option.deptalias : option.dept" [nzValue]="option.id">
|
927
|
650
|
</nz-option>
|
928
|
651
|
</ng-container>
|
929
|
|
- <nz-option
|
930
|
|
- *ngIf="false"
|
931
|
|
- nzDisabled
|
932
|
|
- nzCustomContent
|
933
|
|
- >
|
934
|
|
- <i
|
935
|
|
- nz-icon
|
936
|
|
- nzType="loading"
|
937
|
|
- class="loading-icon"
|
938
|
|
- ></i>
|
|
652
|
+ <nz-option *ngIf="false" nzDisabled nzCustomContent>
|
|
653
|
+ <i nz-icon nzType="loading" class="loading-icon"></i>
|
939
|
654
|
搜索中...
|
940
|
655
|
</nz-option>
|
941
|
656
|
</nz-select>
|
|
@@ -945,10 +660,7 @@
|
945
|
660
|
</div>
|
946
|
661
|
</div>
|
947
|
662
|
<!-- 工号 -->
|
948
|
|
- <div
|
949
|
|
- style="width: 100%; margin: 10px auto 0"
|
950
|
|
- *ngIf="buildMsg.reserveUserSwitch == 1"
|
951
|
|
- >
|
|
663
|
+ <div style="width: 100%; margin: 10px auto 0" *ngIf="buildMsg.reserveUserSwitch == 1">
|
952
|
664
|
<p><span class="red">*</span>工号:</p>
|
953
|
665
|
<nz-select class="w100" [nzDropdownMatchSelectWidth]="false" nzServerSearch nzShowSearch (nzOnSearch)="searchAccount($event)" nzPlaceHolder="请选择工号" [(ngModel)]="account" (ngModelChange)="changeAccount($event)">
|
954
|
666
|
<ng-container *ngFor="let option of accountList">
|
|
@@ -962,88 +674,36 @@
|
962
|
674
|
</nz-select>
|
963
|
675
|
</div>
|
964
|
676
|
<!-- 工单备注: -->
|
965
|
|
- <div
|
966
|
|
- style="width: 100%; margin: 10px auto 0"
|
967
|
|
- *ngIf="buildMsg.remarksSwitch == 1"
|
968
|
|
- >
|
|
677
|
+ <div style="width: 100%; margin: 10px auto 0" *ngIf="buildMsg.remarksSwitch == 1">
|
969
|
678
|
<p>工单备注:</p>
|
970
|
|
- <textarea
|
971
|
|
- nz-input
|
972
|
|
- [placeholder]="workOrderRemarkTips"
|
973
|
|
- [nzAutosize]="{
|
974
|
|
- minRows: 3,
|
975
|
|
- maxRows: 5
|
976
|
|
- }"
|
977
|
|
- maxlength="100"
|
978
|
|
- [(ngModel)]="workOrderRemark"
|
979
|
|
- #remarksEle
|
980
|
|
- ></textarea>
|
981
|
|
- <p
|
982
|
|
- class="mt8 mb8"
|
983
|
|
- *ngIf="customRemarks.length"
|
984
|
|
- >
|
|
679
|
+ <textarea nz-input [placeholder]="workOrderRemarkTips" [nzAutosize]="{minRows: 3, maxRows: 5}" maxlength="100" [(ngModel)]="workOrderRemark" #remarksEle></textarea>
|
|
680
|
+ <p class="mt8 mb8" *ngIf="customRemarks.length">
|
985
|
681
|
快捷输入:
|
986
|
682
|
</p>
|
987
|
683
|
<div *ngIf="customRemarks.length">
|
988
|
|
- <span
|
989
|
|
- class="addRemarks"
|
990
|
|
- *ngFor="let item of customRemarks"
|
991
|
|
- (click)="addRemarks(item)"
|
992
|
|
- >【{{ item }}】</span
|
993
|
|
- >
|
|
684
|
+ <span class="addRemarks" *ngFor="let item of customRemarks" (click)="addRemarks(item)">【{{ item }}】</span>
|
994
|
685
|
</div>
|
995
|
|
- <p
|
996
|
|
- class="mt8 mb8"
|
997
|
|
- *ngIf="historyCustomRemarks.length"
|
998
|
|
- >
|
|
686
|
+ <p class="mt8 mb8" *ngIf="historyCustomRemarks.length">
|
999
|
687
|
历史输入:
|
1000
|
688
|
</p>
|
1001
|
689
|
<div *ngIf="historyCustomRemarks.length">
|
1002
|
|
- <span
|
1003
|
|
- class="addRemarks"
|
1004
|
|
- *ngFor="
|
1005
|
|
- let item of historyCustomRemarks
|
1006
|
|
- "
|
1007
|
|
- (click)="addRemarks(item)"
|
1008
|
|
- >【{{ item }}】</span
|
1009
|
|
- >
|
|
690
|
+ <span class="addRemarks" *ngFor="let item of historyCustomRemarks" (click)="addRemarks(item)">【{{item }}】</span>
|
1010
|
691
|
</div>
|
1011
|
692
|
</div>
|
1012
|
693
|
</div>
|
1013
|
|
- <div
|
1014
|
|
- *ngIf="selectOtherId"
|
1015
|
|
- class="btns display_flex justify-content_flex-center"
|
1016
|
|
- >
|
1017
|
|
- <button
|
1018
|
|
- *ngIf="
|
1019
|
|
- buildMsg.status != 100009 &&
|
1020
|
|
- buildMsg.status != 100010
|
1021
|
|
- "
|
1022
|
|
- nz-button
|
1023
|
|
- nzType="primary"
|
1024
|
|
- [nzLoading]="loading5"
|
1025
|
|
- (click)="confirmShortcut()"
|
1026
|
|
- >
|
|
694
|
+ <div *ngIf="selectOtherId" class="btns display_flex justify-content_flex-center">
|
|
695
|
+ <button *ngIf="buildMsg.status != 100009 && buildMsg.status != 100010" nz-button nzType="primary" [nzLoading]="loading5" (click)="confirmShortcut()">
|
1027
|
696
|
确认
|
1028
|
697
|
</button>
|
1029
|
698
|
</div>
|
1030
|
699
|
</div>
|
1031
|
700
|
</overlay-scrollbars>
|
1032
|
701
|
</div>
|
1033
|
|
- <div
|
1034
|
|
- class="modalBody_left nLoading"
|
1035
|
|
- *ngIf="nLoading"
|
1036
|
|
- >
|
1037
|
|
- <img
|
1038
|
|
- src="../../../assets/images/loading.gif"
|
1039
|
|
- alt=""
|
1040
|
|
- />
|
|
702
|
+ <div class="modalBody_left nLoading" *ngIf="nLoading">
|
|
703
|
+ <img src="../../../assets/images/loading.gif" alt="" />
|
1041
|
704
|
<div>加载中...</div>
|
1042
|
705
|
</div>
|
1043
|
|
- <div
|
1044
|
|
- class="modalBody_left noData"
|
1045
|
|
- *ngIf="!nLoading && !selectOtherId"
|
1046
|
|
- >
|
|
706
|
+ <div class="modalBody_left noData" *ngIf="!nLoading && !selectOtherId">
|
1047
|
707
|
暂无数据
|
1048
|
708
|
</div>
|
1049
|
709
|
<div class="modalBody_right">
|
|
@@ -3406,3 +3066,6 @@
|
3406
|
3066
|
</label>
|
3407
|
3067
|
</div>
|
3408
|
3068
|
</nz-modal>
|
|
3069
|
+
|
|
3070
|
+<!-- 快捷方式建单弹窗 -->
|
|
3071
|
+<app-build-quick-confirm *ngIf="isShowBuildQuickConfirm" [buildQuickConfirmData]="buildQuickConfirmData" (cancelModal)="cancelBuildQuickConfirm($event)" (confirmModal)="confirmBuildQuickConfirm($event)" [loading5]="loadingQuick"></app-build-quick-confirm>
|