|
@@ -195,21 +195,21 @@
|
195
|
195
|
</div>
|
196
|
196
|
<div class="mb8 w100">
|
197
|
197
|
<nz-form-label class="label" nzRequired>是否特殊情况关闭</nz-form-label>
|
198
|
|
- <nz-radio-group class="handlerType" [(ngModel)]="specialCloseButton">
|
|
198
|
+ <nz-radio-group class="handlerType" [(ngModel)]="specialCloseButton" (ngModelChange)="changeSpecialCloseButton()">
|
199
|
199
|
<label nz-radio nzValue='1'>是</label>
|
200
|
200
|
<label nz-radio nzValue='0'>否</label>
|
201
|
201
|
</nz-radio-group>
|
202
|
202
|
</div>
|
203
|
|
- <div class="mb8 w100">
|
204
|
|
- <nz-form-label class="label" nzRequired>是否允许提前执行</nz-form-label>
|
205
|
|
- <nz-radio-group class="handlerType" [(ngModel)]="executeSwitch">
|
|
203
|
+ <div class="mb8 w100" *ngIf="specialCloseButton == 1">
|
|
204
|
+ <nz-form-label class="label" nzRequired>是否需要验证科室码</nz-form-label>
|
|
205
|
+ <nz-radio-group class="handlerType" [(ngModel)]="closeOrderCheckDept">
|
206
|
206
|
<label nz-radio [nzValue]='1'>是</label>
|
207
|
207
|
<label nz-radio [nzValue]='0'>否</label>
|
208
|
208
|
</nz-radio-group>
|
209
|
209
|
</div>
|
210
|
210
|
<div class="mb8 w100">
|
211
|
|
- <nz-form-label class="label" nzRequired>是否需要验证科室码</nz-form-label>
|
212
|
|
- <nz-radio-group class="handlerType" [(ngModel)]="closeOrderCheckDept">
|
|
211
|
+ <nz-form-label class="label" nzRequired>是否允许提前执行</nz-form-label>
|
|
212
|
+ <nz-radio-group class="handlerType" [(ngModel)]="executeSwitch">
|
213
|
213
|
<label nz-radio [nzValue]='1'>是</label>
|
214
|
214
|
<label nz-radio [nzValue]='0'>否</label>
|
215
|
215
|
</nz-radio-group>
|