|
@@ -120,7 +120,10 @@
|
120
|
120
|
(click)="openRecallModal()">撤回</button>
|
121
|
121
|
<button *ngIf="showCoop&&(orderInfo.gdState.value==2||orderInfo.gdState.value==3||orderInfo.gdState.value==4)" nz-button
|
122
|
122
|
nzType="danger" (click)="openDelModal()">删除</button> -->
|
123
|
|
- <button *ngIf="orderInfo.taskType.associationType.value == 'ordinary' && orderInfo.taskType.ordinaryField.value == 'blood'" class="btn default" nz-button nzType="default" (click)="viewDetail(orderInfo)">
|
|
123
|
+ <button *ngIf="orderInfo.taskType.associationType.value == 'ordinary' && orderInfo.taskType.ordinaryField.value == 'blood'" class="btn default" nz-button nzType="default" (click)="viewDetail(orderInfo, 'blood')">
|
|
124
|
+ 业务数据
|
|
125
|
+ </button>
|
|
126
|
+ <button *ngIf="orderInfo.taskType.associationType.value == 'ordinary' && (orderInfo.taskType.ordinaryField.value == 'drugsJpbag' || orderInfo.taskType.ordinaryField.value == 'drugsWestern' || orderInfo.taskType.ordinaryField.value == 'drugsReturn' || orderInfo.taskType.ordinaryField.value == 'drugsPoison' || orderInfo.taskType.ordinaryField.value == 'drugsHerbal')" class="btn default" nz-button nzType="default" (click)="viewDetail(orderInfo, orderInfo.taskType.ordinaryField.value)">
|
124
|
127
|
业务数据
|
125
|
128
|
</button>
|
126
|
129
|
<button class=" btn cancel" nz-button nzType="default" (click)="close()">取消</button>
|
|
@@ -162,7 +165,7 @@
|
162
|
165
|
<app-businessData-detail-modal
|
163
|
166
|
*ngIf="bloodModalShow"
|
164
|
167
|
[show]="bloodModalShow"
|
165
|
|
- type="blood"
|
|
168
|
+ [type]="businessDataModalType"
|
166
|
169
|
[orderId]="orderId"
|
167
|
170
|
(closeModelHs)="closeModelBlood($event)"
|
168
|
171
|
></app-businessData-detail-modal>
|