|
@@ -179,11 +179,11 @@
|
179
|
179
|
<div nz-col nzSpan="6" class="borderR h100p">
|
180
|
180
|
<div class="quick">
|
181
|
181
|
<button class="btn txtC" (click)="newShortcutOrder1(bbMsg,'bb')">
|
182
|
|
- 收取所有标本
|
|
182
|
+ 收取标本
|
183
|
183
|
</button>
|
184
|
|
- <button class="btn txtC" (click)="newShortcutOrder1(bbMsg,'bb',true)">
|
|
184
|
+ <!-- <button class="btn txtC" (click)="newShortcutOrder1(bbMsg,'bb',true)">
|
185
|
185
|
收取急查标本
|
186
|
|
- </button>
|
|
186
|
+ </button> -->
|
187
|
187
|
</div>
|
188
|
188
|
</div>
|
189
|
189
|
</div>
|
|
@@ -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>
|
|
@@ -1299,5 +1316,6 @@
|
1299
|
1316
|
<app-mask *ngIf="maskFlag"></app-mask>
|
1300
|
1317
|
<!-- 是否需要医护陪同检查模态框 -->
|
1301
|
1318
|
<app-dialog-delete [delModal]="accompanyModal" (hideDelModalEvent)="hideAccompanyModal($event)"
|
1302
|
|
- [btnLoading]="accompanyLoading" [cancenlLoading]="cancenlLoading" (confirmDelEvent)="confirmAccompany()"
|
1303
|
|
- confirmTxt="是" cancelTxt="否" content="您选择的患者是危重或特级护理或一级护理患者,请问是否需要医护陪同检查?"></app-dialog-delete>
|
|
1319
|
+ (cancelDelEvent)="hideAccompanyModal($event)" [btnLoading]="accompanyLoading" [cancenlLoading]="cancenlLoading"
|
|
1320
|
+ (confirmDelEvent)="confirmAccompany()" confirmTxt="是" cancelTxt="否" content="您选择的患者是危重或特级护理或一级护理患者,请问是否需要医护陪同检查?">
|
|
1321
|
+</app-dialog-delete>
|