|
@@ -965,7 +965,6 @@
|
965
|
965
|
<div class="icon"><i class="icon_transport transport-wenhao"></i></div>
|
966
|
966
|
<div class="defeat">{{buildMsg1.msg}}</div>
|
967
|
967
|
</div>
|
968
|
|
-
|
969
|
968
|
<!-- 100013 (护士端一键建单展示策略)取起点科室,和mgs值展示 -->
|
970
|
969
|
<div class="content" *ngIf='buildMsg1.status==100013'>
|
971
|
970
|
<div class="jiTit borderB">
|
|
@@ -1052,6 +1051,24 @@
|
1052
|
1051
|
</form>
|
1053
|
1052
|
</div>
|
1054
|
1053
|
</div>
|
|
1054
|
+ <!-- 标本配送备注 -->
|
|
1055
|
+ <!-- baba -->
|
|
1056
|
+ <div *ngIf="buildMsg1.remarksSwitch == 1">
|
|
1057
|
+ <p>工单备注:</p>
|
|
1058
|
+ <textarea nz-input [placeholder]="workOrderRemarkTips"
|
|
1059
|
+ [nzAutosize]="{ minRows: 3, maxRows: 5 }" maxlength="100"
|
|
1060
|
+ [(ngModel)]="workOrderRemark" #remarksEle></textarea>
|
|
1061
|
+ <p class="mt8 mb8" *ngIf="customRemarks.length">快捷输入:</p>
|
|
1062
|
+ <div *ngIf="customRemarks.length">
|
|
1063
|
+ <span class="addRemarks" *ngFor="let item of customRemarks"
|
|
1064
|
+ (click)="addRemarks(item)">【{{item}}】</span>
|
|
1065
|
+ </div>
|
|
1066
|
+ <p class="mt8 mb8" *ngIf="historyCustomRemarks.length">历史输入:</p>
|
|
1067
|
+ <div *ngIf="historyCustomRemarks.length">
|
|
1068
|
+ <span class="addRemarks" *ngFor="let item of historyCustomRemarks"
|
|
1069
|
+ (click)="addRemarks(item)">【{{item}}】</span>
|
|
1070
|
+ </div>
|
|
1071
|
+ </div>
|
1055
|
1072
|
<div class="btns display_flex justify-content_flex-center">
|
1056
|
1073
|
<button *ngIf="buildMsg1.status!=100009&&buildMsg1.status!=100010" nz-button nzType="primary"
|
1057
|
1074
|
[nzLoading]="btnLoading" (click)="confirmShortcut1()">确认</button>
|