|
@@ -45,16 +45,16 @@
|
45
|
45
|
<thead>
|
46
|
46
|
<tr class="thead">
|
47
|
47
|
<th nzWidth="6%">序号</th>
|
48
|
|
- <th nzWidth="11%">发药科室</th>
|
49
|
|
- <th nzWidth="11%">申请科室</th>
|
50
|
|
- <th nzWidth="11%">同步时间</th>
|
|
48
|
+ <th nzWidth="10%">发药科室</th>
|
|
49
|
+ <th nzWidth="10%">申请科室</th>
|
|
50
|
+ <th nzWidth="10%">同步时间</th>
|
51
|
51
|
<th nzWidth="10%">药品状态</th>
|
52
|
|
- <!-- <th nzWidth="14%">批次号</th> -->
|
53
|
|
- <th nzWidth="11%">记账时间</th>
|
54
|
|
- <th nzWidth="11%">配药时间</th>
|
55
|
|
- <th nzWidth="11%">核对时间</th>
|
|
52
|
+ <th nzWidth="10%">记账时间</th>
|
|
53
|
+ <th nzWidth="10%">配药时间</th>
|
|
54
|
+ <th nzWidth="10%">核对时间</th>
|
56
|
55
|
<th nzWidth="10%">请领单号</th>
|
57
|
|
- <th nzWidth="8%">药品标识</th>
|
|
56
|
+ <th nzWidth="7%">药品标识</th>
|
|
57
|
+ <th nzWidth="7%">操作</th>
|
58
|
58
|
</tr>
|
59
|
59
|
</thead>
|
60
|
60
|
<tbody>
|
|
@@ -64,12 +64,12 @@
|
64
|
64
|
<td>{{ data.target?.dept }}</td>
|
65
|
65
|
<td>{{ data.creatTime }}</td>
|
66
|
66
|
<td>{{ data.drugsState?.name }}</td>
|
67
|
|
- <!-- <td>{{data.batchNo}}</td> -->
|
68
|
67
|
<td>{{data.bagTime}}</td>
|
69
|
68
|
<td>{{data.startDispensingTime}}</td>
|
70
|
69
|
<td>{{data.checkTime}}</td>
|
71
|
70
|
<td>{{data.packid}}</td>
|
72
|
71
|
<td>{{data.id}}</td>
|
|
72
|
+ <td><button (click)="showLogs(data)">查看历史</button></td>
|
73
|
73
|
</tr>
|
74
|
74
|
</tbody>
|
75
|
75
|
</nz-table>
|
|
@@ -88,3 +88,10 @@
|
88
|
88
|
<app-prompt-modal *ngIf="promptModalShow" [content]="promptContent" [success]="ifSuccess" [show]="promptModalShow"
|
89
|
89
|
[info]="promptInfo">
|
90
|
90
|
</app-prompt-modal>
|
|
91
|
+<!-- 药包流程信息查看 -->
|
|
92
|
+<app-log-prompt-modal
|
|
93
|
+ *ngIf="logPromptModalShow"
|
|
94
|
+ [show]="logPromptModalShow"
|
|
95
|
+ [drugsBagId]="drugsBagId"
|
|
96
|
+ (closeModelHs)="closeModelLog($event)"
|
|
97
|
+></app-log-prompt-modal>
|