|
@@ -0,0 +1,586 @@
|
|
1
|
+<div class="pharmacy">
|
|
2
|
+ <!-- 头部 start -->
|
|
3
|
+ <div class="pharmacy-header">
|
|
4
|
+ <div class="pharmacy-logo">
|
|
5
|
+ <img
|
|
6
|
+ src="./../../assets/images/login_logo.png"
|
|
7
|
+ class="pharmacy-logo__img"
|
|
8
|
+ alt=""
|
|
9
|
+ />
|
|
10
|
+ <h1 class="pharmacy-logo__name">大势医院输送保障管理平台</h1>
|
|
11
|
+ </div>
|
|
12
|
+ <div class="pharmacy-name">
|
|
13
|
+ <h2 class="pharmacy-name__title">药房</h2>
|
|
14
|
+ <div class="pharmacy-name__total">
|
|
15
|
+ <div>今日药单量:<strong>253</strong></div>
|
|
16
|
+ <div>今日已完成:<strong>248</strong></div>
|
|
17
|
+ </div>
|
|
18
|
+ </div>
|
|
19
|
+ <div class="userInfo">
|
|
20
|
+ <div class="wel">欢迎您:</div>
|
|
21
|
+ <div class="user">
|
|
22
|
+ <img src="../../assets/images/icon_keshi.png" alt="" />
|
|
23
|
+ <span *ngIf="deptDisplay">{{
|
|
24
|
+ deptDisplay == 2 ? loginUser.dept.deptalias : loginUser.dept.dept
|
|
25
|
+ }}</span>
|
|
26
|
+ </div>
|
|
27
|
+ <div class="userInfo-wrap">
|
|
28
|
+ <div class="logOut" (click)="changeKsNow()">切换科室</div>
|
|
29
|
+ <div class="logOut" (click)="logOut()">退出</div>
|
|
30
|
+ </div>
|
|
31
|
+ </div>
|
|
32
|
+ </div>
|
|
33
|
+ <!-- 头部 end -->
|
|
34
|
+ <!-- 主体部分 start -->
|
|
35
|
+ <div class="pharmacy-main">
|
|
36
|
+ <!-- 待配药 start -->
|
|
37
|
+ <div class="pharmacy-main__list pharmacy-main__print">
|
|
38
|
+ <!-- 标题 start -->
|
|
39
|
+ <div class="pharmacy-main__title">
|
|
40
|
+ <strong>药品计费(待配药)(0)</strong>
|
|
41
|
+ <!-- <button nz-button class="pharmacy-main__printAll" (click)="print()"
|
|
42
|
+ [disabled]="printPharmacyList.length===0">批量打印</button> -->
|
|
43
|
+ <span class="autoUpdate">{{ logTime }}秒</span>
|
|
44
|
+ </div>
|
|
45
|
+ <!-- 标题 end -->
|
|
46
|
+ <!-- 搜索框 start -->
|
|
47
|
+ <div class="pharmacy-main__search">
|
|
48
|
+ <div class="pharmacy-main__searchInput">
|
|
49
|
+ <input
|
|
50
|
+ nz-input
|
|
51
|
+ placeholder="请输入关键字"
|
|
52
|
+ [(ngModel)]="printPharmacySearchKey"
|
|
53
|
+ />
|
|
54
|
+ <div class="pharmacy-main__searchText" (click)="searchKeyHandle(1)">
|
|
55
|
+ <i nz-icon nzType="search"></i>
|
|
56
|
+ <span>搜索</span>
|
|
57
|
+ </div>
|
|
58
|
+ </div>
|
|
59
|
+ </div>
|
|
60
|
+ <!-- 搜索框 end -->
|
|
61
|
+ <!-- 列表 start -->
|
|
62
|
+ <overlay-scrollbars #osComponentRef1 class="pharmacy-main__selectionWrap">
|
|
63
|
+ <div *ngIf="!loading1" style="height: 100%">
|
|
64
|
+ <div
|
|
65
|
+ class="pharmacy-main__selection"
|
|
66
|
+ *ngFor="let item of printPharmacyList"
|
|
67
|
+ >
|
|
68
|
+ <div class="pharmacy-main__selectionInfo">
|
|
69
|
+ <div class="pharmacy-main__selectionItem">
|
|
70
|
+ <strong>{{ item.target ? item.target.dept : "" }}</strong>
|
|
71
|
+ </div>
|
|
72
|
+ <div class="pharmacy-main__selectionItem">
|
|
73
|
+ <span>单号:{{ item.packid }}</span>
|
|
74
|
+ </div>
|
|
75
|
+ <div class="pharmacy-main__selectionItem">
|
|
76
|
+ <span
|
|
77
|
+ >记账时间:<ng-container *ngIf="item.bagTime">{{
|
|
78
|
+ item.bagTime | date: "MM-dd HH:mm"
|
|
79
|
+ }}</ng-container
|
|
80
|
+ ><ng-container *ngIf="!item.bagTime">无</ng-container></span
|
|
81
|
+ >
|
|
82
|
+ </div>
|
|
83
|
+ </div>
|
|
84
|
+ </div>
|
|
85
|
+ <div
|
|
86
|
+ class="pharmacy-main__selection pharmacy-main__selection--noData"
|
|
87
|
+ *ngIf="printPharmacyList.length === 0"
|
|
88
|
+ >
|
|
89
|
+ <img src="./../../assets/images/image_kongbaiye.png" alt="" />
|
|
90
|
+ </div>
|
|
91
|
+ <div
|
|
92
|
+ (click)="loadMore(1)"
|
|
93
|
+ class="pharmacy-main__selection pharmacy-main__selection--more"
|
|
94
|
+ *ngIf="printPharmacyFlag"
|
|
95
|
+ >
|
|
96
|
+ <div class="pharmacy-main__selectionInfo">
|
|
97
|
+ <i
|
|
98
|
+ nz-icon
|
|
99
|
+ nzType="loading"
|
|
100
|
+ nzTheme="outline"
|
|
101
|
+ class="pharmacy-main__selection--icon"
|
|
102
|
+ *ngIf="printPharmacyLoad"
|
|
103
|
+ ></i
|
|
104
|
+ >查看更多
|
|
105
|
+ </div>
|
|
106
|
+ </div>
|
|
107
|
+ </div>
|
|
108
|
+ <div
|
|
109
|
+ *ngIf="loading1"
|
|
110
|
+ style="height: calc(100vh - 212px); min-height: 556px"
|
|
111
|
+ >
|
|
112
|
+ <div
|
|
113
|
+ class="loadingFull display_flex justify-content_flex-center align-items_center"
|
|
114
|
+ >
|
|
115
|
+ <div class="loadingFullInner">
|
|
116
|
+ <img src="../../../assets/images/loading.gif" alt="" />
|
|
117
|
+ <div>加载中...</div>
|
|
118
|
+ </div>
|
|
119
|
+ </div>
|
|
120
|
+ </div>
|
|
121
|
+ </overlay-scrollbars>
|
|
122
|
+ <!-- 列表 end -->
|
|
123
|
+ </div>
|
|
124
|
+ <!-- 待配药 end -->
|
|
125
|
+ <!-- 配药中 start -->
|
|
126
|
+ <div class="pharmacy-main__list pharmacy-main__waitDelivery">
|
|
127
|
+ <!-- 标题 start -->
|
|
128
|
+ <div class="pharmacy-main__title">
|
|
129
|
+ <strong>配药中(3)</strong>
|
|
130
|
+ <span class="autoUpdate">{{ logTime }}秒</span>
|
|
131
|
+ </div>
|
|
132
|
+ <!-- 标题 end -->
|
|
133
|
+ <!-- 搜索框 start -->
|
|
134
|
+ <div class="pharmacy-main__search">
|
|
135
|
+ <div class="pharmacy-main__searchInput">
|
|
136
|
+ <input
|
|
137
|
+ nz-input
|
|
138
|
+ placeholder="请输入关键字"
|
|
139
|
+ [(ngModel)]="waitPharmacySearchKey"
|
|
140
|
+ />
|
|
141
|
+ <div class="pharmacy-main__searchText" (click)="searchKeyHandle(2)">
|
|
142
|
+ <i nz-icon nzType="search"></i>
|
|
143
|
+ <span>搜索</span>
|
|
144
|
+ </div>
|
|
145
|
+ </div>
|
|
146
|
+ </div>
|
|
147
|
+ <!-- 搜索框 end -->
|
|
148
|
+ <!-- 列表 start -->
|
|
149
|
+ <overlay-scrollbars #osComponentRef2 class="pharmacy-main__selectionWrap">
|
|
150
|
+ <div *ngIf="!loading2" style="height: 100%">
|
|
151
|
+ <div
|
|
152
|
+ class="pharmacy-main__selection"
|
|
153
|
+ *ngFor="let item of waitPharmacyList; let i = index"
|
|
154
|
+ >
|
|
155
|
+ <div class="pharmacy-main__selectionInfo">
|
|
156
|
+ <div class="pharmacy-main__selectionItem">
|
|
157
|
+ <strong>{{ item.target ? item.target.dept : "" }}</strong>
|
|
158
|
+ </div>
|
|
159
|
+ <div class="pharmacy-main__selectionItem">
|
|
160
|
+ <span>单号:{{ item.packid }}</span>
|
|
161
|
+ </div>
|
|
162
|
+ <div class="pharmacy-main__selectionItem">
|
|
163
|
+ <span
|
|
164
|
+ >记账时间:<ng-container *ngIf="item.bagTime">{{
|
|
165
|
+ item.bagTime | date: "MM-dd HH:mm"
|
|
166
|
+ }}</ng-container
|
|
167
|
+ ><ng-container *ngIf="!item.bagTime">无</ng-container></span
|
|
168
|
+ >
|
|
169
|
+ </div>
|
|
170
|
+ <div class="pharmacy-main__selectionItem">
|
|
171
|
+ <span *ngIf="i == 0">10:10 由 亚祥 配药</span>
|
|
172
|
+ <span *ngIf="i == 1">10:10 由 森源 配药</span>
|
|
173
|
+ <span *ngIf="i == 2">10:10 由 王满 配药</span>
|
|
174
|
+ <span *ngIf="i == 3">10:10 由 小平 配药</span>
|
|
175
|
+ </div>
|
|
176
|
+ </div>
|
|
177
|
+ </div>
|
|
178
|
+ <div
|
|
179
|
+ class="pharmacy-main__selection pharmacy-main__selection--noData"
|
|
180
|
+ *ngIf="waitPharmacyList.length === 0"
|
|
181
|
+ >
|
|
182
|
+ <img src="./../../assets/images/image_kongbaiye.png" alt="" />
|
|
183
|
+ </div>
|
|
184
|
+ <div
|
|
185
|
+ (click)="loadMore(2)"
|
|
186
|
+ class="pharmacy-main__selection pharmacy-main__selection--more"
|
|
187
|
+ *ngIf="waitPharmacyFlag"
|
|
188
|
+ >
|
|
189
|
+ <div class="pharmacy-main__selectionInfo">
|
|
190
|
+ <i
|
|
191
|
+ nz-icon
|
|
192
|
+ nzType="loading"
|
|
193
|
+ nzTheme="outline"
|
|
194
|
+ class="pharmacy-main__selection--icon"
|
|
195
|
+ *ngIf="waitPharmacyLoad"
|
|
196
|
+ ></i
|
|
197
|
+ >查看更多
|
|
198
|
+ </div>
|
|
199
|
+ </div>
|
|
200
|
+ </div>
|
|
201
|
+ <div
|
|
202
|
+ *ngIf="loading2"
|
|
203
|
+ style="height: calc(100vh - 212px); min-height: 556px"
|
|
204
|
+ >
|
|
205
|
+ <div
|
|
206
|
+ class="loadingFull display_flex justify-content_flex-center align-items_center"
|
|
207
|
+ >
|
|
208
|
+ <div class="loadingFullInner">
|
|
209
|
+ <img src="../../../assets/images/loading.gif" alt="" />
|
|
210
|
+ <div>加载中...</div>
|
|
211
|
+ </div>
|
|
212
|
+ </div>
|
|
213
|
+ </div>
|
|
214
|
+ </overlay-scrollbars>
|
|
215
|
+ <!-- 列表 end -->
|
|
216
|
+ </div>
|
|
217
|
+ <!-- 配药中 end -->
|
|
218
|
+ <!-- 核对中 start -->
|
|
219
|
+ <div class="pharmacy-main__list pharmacy-main__delivery">
|
|
220
|
+ <!-- 标题 start -->
|
|
221
|
+ <div class="pharmacy-main__title">
|
|
222
|
+ <strong>核对中(3)</strong>
|
|
223
|
+ <span class="autoUpdate">{{ logTime }}秒</span>
|
|
224
|
+ </div>
|
|
225
|
+ <!-- 标题 end -->
|
|
226
|
+ <!-- 搜索框 start -->
|
|
227
|
+ <div class="pharmacy-main__search">
|
|
228
|
+ <div class="pharmacy-main__searchInput">
|
|
229
|
+ <input
|
|
230
|
+ nz-input
|
|
231
|
+ placeholder="请输入关键字"
|
|
232
|
+ [(ngModel)]="pharmacySearchKey"
|
|
233
|
+ />
|
|
234
|
+ <div class="pharmacy-main__searchText" (click)="searchKeyHandle(3)">
|
|
235
|
+ <i nz-icon nzType="search"></i>
|
|
236
|
+ <span>搜索</span>
|
|
237
|
+ </div>
|
|
238
|
+ </div>
|
|
239
|
+ </div>
|
|
240
|
+ <!-- 搜索框 end -->
|
|
241
|
+ <!-- 列表 start -->
|
|
242
|
+ <overlay-scrollbars #osComponentRef3 class="pharmacy-main__selectionWrap">
|
|
243
|
+ <div *ngIf="!loading3" style="height: 100%">
|
|
244
|
+ <div
|
|
245
|
+ class="pharmacy-main__selection"
|
|
246
|
+ *ngFor="let item of waitPharmacyList; let i = index"
|
|
247
|
+ >
|
|
248
|
+ <div class="pharmacy-main__selectionInfo">
|
|
249
|
+ <div class="pharmacy-main__selectionItem">
|
|
250
|
+ <strong>{{ item.target ? item.target.dept : "" }}</strong>
|
|
251
|
+ </div>
|
|
252
|
+ <div class="pharmacy-main__selectionItem">
|
|
253
|
+ <span>单号:{{ item.packid }}</span>
|
|
254
|
+ </div>
|
|
255
|
+ <div class="pharmacy-main__selectionItem">
|
|
256
|
+ <span
|
|
257
|
+ >记账时间:<ng-container *ngIf="item.bagTime">{{
|
|
258
|
+ item.bagTime | date: "MM-dd HH:mm"
|
|
259
|
+ }}</ng-container
|
|
260
|
+ ><ng-container *ngIf="!item.bagTime">无</ng-container></span
|
|
261
|
+ >
|
|
262
|
+ </div>
|
|
263
|
+ <div class="pharmacy-main__selectionItem">
|
|
264
|
+ <span *ngIf="i == 0">10:10 由 亚祥 核对</span>
|
|
265
|
+ <span *ngIf="i == 1">10:10 由 森源 核对</span>
|
|
266
|
+ <span *ngIf="i == 2">10:10 由 王满 核对</span>
|
|
267
|
+ <span *ngIf="i == 3">10:10 由 小平 核对</span>
|
|
268
|
+ </div>
|
|
269
|
+ </div>
|
|
270
|
+ </div>
|
|
271
|
+ <div
|
|
272
|
+ class="pharmacy-main__selection pharmacy-main__selection--noData"
|
|
273
|
+ *ngIf="waitPharmacyList.length === 0"
|
|
274
|
+ >
|
|
275
|
+ <img src="./../../assets/images/image_kongbaiye.png" alt="" />
|
|
276
|
+ </div>
|
|
277
|
+ <div
|
|
278
|
+ (click)="loadMore(3)"
|
|
279
|
+ class="pharmacy-main__selection pharmacy-main__selection--more"
|
|
280
|
+ *ngIf="pharmacyFlag"
|
|
281
|
+ >
|
|
282
|
+ <div class="pharmacy-main__selectionInfo">
|
|
283
|
+ <i
|
|
284
|
+ nz-icon
|
|
285
|
+ nzType="loading"
|
|
286
|
+ nzTheme="outline"
|
|
287
|
+ class="pharmacy-main__selection--icon"
|
|
288
|
+ *ngIf="pharmacyLoad"
|
|
289
|
+ ></i
|
|
290
|
+ >查看更多
|
|
291
|
+ </div>
|
|
292
|
+ </div>
|
|
293
|
+ </div>
|
|
294
|
+ <div
|
|
295
|
+ *ngIf="loading3"
|
|
296
|
+ style="height: calc(100vh - 212px); min-height: 556px"
|
|
297
|
+ >
|
|
298
|
+ <div
|
|
299
|
+ class="loadingFull display_flex justify-content_flex-center align-items_center"
|
|
300
|
+ >
|
|
301
|
+ <div class="loadingFullInner">
|
|
302
|
+ <img src="../../../assets/images/loading.gif" alt="" />
|
|
303
|
+ <div>加载中...</div>
|
|
304
|
+ </div>
|
|
305
|
+ </div>
|
|
306
|
+ </div>
|
|
307
|
+ </overlay-scrollbars>
|
|
308
|
+ <!-- 列表 end -->
|
|
309
|
+ </div>
|
|
310
|
+ <!-- 核对中 end -->
|
|
311
|
+
|
|
312
|
+ <!-- 临时增加 start -->
|
|
313
|
+ <!-- 核对中 start -->
|
|
314
|
+ <div class="pharmacy-main__list pharmacy-main__delivery">
|
|
315
|
+ <!-- 标题 start -->
|
|
316
|
+ <div class="pharmacy-main__title">
|
|
317
|
+ <strong>配送中(3)</strong>
|
|
318
|
+ <span class="autoUpdate">{{ logTime }}秒</span>
|
|
319
|
+ </div>
|
|
320
|
+ <!-- 标题 end -->
|
|
321
|
+ <!-- 搜索框 start -->
|
|
322
|
+ <div class="pharmacy-main__search">
|
|
323
|
+ <div class="pharmacy-main__searchInput">
|
|
324
|
+ <input
|
|
325
|
+ nz-input
|
|
326
|
+ placeholder="请输入关键字"
|
|
327
|
+ [(ngModel)]="pharmacySearchKey"
|
|
328
|
+ />
|
|
329
|
+ <div class="pharmacy-main__searchText" (click)="searchKeyHandle(3)">
|
|
330
|
+ <i nz-icon nzType="search"></i>
|
|
331
|
+ <span>搜索</span>
|
|
332
|
+ </div>
|
|
333
|
+ </div>
|
|
334
|
+ </div>
|
|
335
|
+ <!-- 搜索框 end -->
|
|
336
|
+ <!-- 列表 start -->
|
|
337
|
+ <overlay-scrollbars #osComponentRef4 class="pharmacy-main__selectionWrap">
|
|
338
|
+ <div *ngIf="!loading3" style="height: 100%">
|
|
339
|
+ <div
|
|
340
|
+ class="pharmacy-main__selection"
|
|
341
|
+ *ngFor="let item of waitPharmacyList; let i = index"
|
|
342
|
+ >
|
|
343
|
+ <div class="pharmacy-main__selectionInfo">
|
|
344
|
+ <div class="pharmacy-main__selectionItem">
|
|
345
|
+ <strong>{{ item.target ? item.target.dept : "" }}</strong>
|
|
346
|
+ </div>
|
|
347
|
+ <div class="pharmacy-main__selectionItem">
|
|
348
|
+ <span>单号:{{ item.packid }}</span>
|
|
349
|
+ </div>
|
|
350
|
+ <div class="pharmacy-main__selectionItem">
|
|
351
|
+ <span
|
|
352
|
+ >记账时间:<ng-container *ngIf="item.bagTime">{{
|
|
353
|
+ item.bagTime | date: "MM-dd HH:mm"
|
|
354
|
+ }}</ng-container
|
|
355
|
+ ><ng-container *ngIf="!item.bagTime">无</ng-container></span
|
|
356
|
+ >
|
|
357
|
+ </div>
|
|
358
|
+ <div class="pharmacy-main__selectionItem">
|
|
359
|
+ <span *ngIf="i == 0">10:10 由 亚祥 配送</span>
|
|
360
|
+ <span *ngIf="i == 1">10:10 由 森源 配送</span>
|
|
361
|
+ <span *ngIf="i == 2">10:10 由 王满 配送</span>
|
|
362
|
+ <span *ngIf="i == 3">10:10 由 小平 配送</span>
|
|
363
|
+ </div>
|
|
364
|
+ </div>
|
|
365
|
+ </div>
|
|
366
|
+ <div
|
|
367
|
+ class="pharmacy-main__selection pharmacy-main__selection--noData"
|
|
368
|
+ *ngIf="waitPharmacyList.length === 0"
|
|
369
|
+ >
|
|
370
|
+ <img src="./../../assets/images/image_kongbaiye.png" alt="" />
|
|
371
|
+ </div>
|
|
372
|
+ <div
|
|
373
|
+ (click)="loadMore(3)"
|
|
374
|
+ class="pharmacy-main__selection pharmacy-main__selection--more"
|
|
375
|
+ *ngIf="pharmacyFlag"
|
|
376
|
+ >
|
|
377
|
+ <div class="pharmacy-main__selectionInfo">
|
|
378
|
+ <i
|
|
379
|
+ nz-icon
|
|
380
|
+ nzType="loading"
|
|
381
|
+ nzTheme="outline"
|
|
382
|
+ class="pharmacy-main__selection--icon"
|
|
383
|
+ *ngIf="pharmacyLoad"
|
|
384
|
+ ></i
|
|
385
|
+ >查看更多
|
|
386
|
+ </div>
|
|
387
|
+ </div>
|
|
388
|
+ </div>
|
|
389
|
+ <div
|
|
390
|
+ *ngIf="loading3"
|
|
391
|
+ style="height: calc(100vh - 212px); min-height: 556px"
|
|
392
|
+ >
|
|
393
|
+ <div
|
|
394
|
+ class="loadingFull display_flex justify-content_flex-center align-items_center"
|
|
395
|
+ >
|
|
396
|
+ <div class="loadingFullInner">
|
|
397
|
+ <img src="../../../assets/images/loading.gif" alt="" />
|
|
398
|
+ <div>加载中...</div>
|
|
399
|
+ </div>
|
|
400
|
+ </div>
|
|
401
|
+ </div>
|
|
402
|
+ </overlay-scrollbars>
|
|
403
|
+ <!-- 列表 end -->
|
|
404
|
+ </div>
|
|
405
|
+ <!-- 核对中 end -->
|
|
406
|
+ <!-- 核对中 start -->
|
|
407
|
+ <div class="pharmacy-main__list pharmacy-main__delivery">
|
|
408
|
+ <!-- 标题 start -->
|
|
409
|
+ <div class="pharmacy-main__title">
|
|
410
|
+ <strong>已完成(3)</strong>
|
|
411
|
+ <span class="autoUpdate">{{ logTime }}秒</span>
|
|
412
|
+ </div>
|
|
413
|
+ <!-- 标题 end -->
|
|
414
|
+ <!-- 搜索框 start -->
|
|
415
|
+ <div class="pharmacy-main__search">
|
|
416
|
+ <div class="pharmacy-main__searchInput">
|
|
417
|
+ <input
|
|
418
|
+ nz-input
|
|
419
|
+ placeholder="请输入关键字"
|
|
420
|
+ [(ngModel)]="pharmacySearchKey"
|
|
421
|
+ />
|
|
422
|
+ <div class="pharmacy-main__searchText" (click)="searchKeyHandle(3)">
|
|
423
|
+ <i nz-icon nzType="search"></i>
|
|
424
|
+ <span>搜索</span>
|
|
425
|
+ </div>
|
|
426
|
+ </div>
|
|
427
|
+ </div>
|
|
428
|
+ <!-- 搜索框 end -->
|
|
429
|
+ <!-- 列表 start -->
|
|
430
|
+ <overlay-scrollbars #osComponentRef5 class="pharmacy-main__selectionWrap">
|
|
431
|
+ <div *ngIf="!loading3" style="height: 100%">
|
|
432
|
+ <div
|
|
433
|
+ class="pharmacy-main__selection"
|
|
434
|
+ *ngFor="let item of waitPharmacyList; let i = index"
|
|
435
|
+ >
|
|
436
|
+ <div class="pharmacy-main__selectionInfo">
|
|
437
|
+ <div class="pharmacy-main__selectionItem">
|
|
438
|
+ <strong>{{ item.target ? item.target.dept : "" }}</strong>
|
|
439
|
+ </div>
|
|
440
|
+ <div class="pharmacy-main__selectionItem">
|
|
441
|
+ <span>单号:{{ item.packid }}</span>
|
|
442
|
+ </div>
|
|
443
|
+ <div class="pharmacy-main__selectionItem">
|
|
444
|
+ <span
|
|
445
|
+ >记账时间:<ng-container *ngIf="item.bagTime">{{
|
|
446
|
+ item.bagTime | date: "MM-dd HH:mm"
|
|
447
|
+ }}</ng-container
|
|
448
|
+ ><ng-container *ngIf="!item.bagTime">无</ng-container></span
|
|
449
|
+ >
|
|
450
|
+ </div>
|
|
451
|
+ <div class="pharmacy-main__selectionItem">
|
|
452
|
+ <span *ngIf="i == 0">10:10 由 亚祥 接收</span>
|
|
453
|
+ <span *ngIf="i == 1">10:10 由 森源 接收</span>
|
|
454
|
+ <span *ngIf="i == 2">10:10 由 王满 接收</span>
|
|
455
|
+ <span *ngIf="i == 3">10:10 由 小平 接收</span>
|
|
456
|
+ </div>
|
|
457
|
+ </div>
|
|
458
|
+ </div>
|
|
459
|
+ <div
|
|
460
|
+ class="pharmacy-main__selection pharmacy-main__selection--noData"
|
|
461
|
+ *ngIf="waitPharmacyList.length === 0"
|
|
462
|
+ >
|
|
463
|
+ <img src="./../../assets/images/image_kongbaiye.png" alt="" />
|
|
464
|
+ </div>
|
|
465
|
+ <div
|
|
466
|
+ (click)="loadMore(3)"
|
|
467
|
+ class="pharmacy-main__selection pharmacy-main__selection--more"
|
|
468
|
+ *ngIf="pharmacyFlag"
|
|
469
|
+ >
|
|
470
|
+ <div class="pharmacy-main__selectionInfo">
|
|
471
|
+ <i
|
|
472
|
+ nz-icon
|
|
473
|
+ nzType="loading"
|
|
474
|
+ nzTheme="outline"
|
|
475
|
+ class="pharmacy-main__selection--icon"
|
|
476
|
+ *ngIf="pharmacyLoad"
|
|
477
|
+ ></i
|
|
478
|
+ >查看更多
|
|
479
|
+ </div>
|
|
480
|
+ </div>
|
|
481
|
+ </div>
|
|
482
|
+ <div
|
|
483
|
+ *ngIf="loading3"
|
|
484
|
+ style="height: calc(100vh - 212px); min-height: 556px"
|
|
485
|
+ >
|
|
486
|
+ <div
|
|
487
|
+ class="loadingFull display_flex justify-content_flex-center align-items_center"
|
|
488
|
+ >
|
|
489
|
+ <div class="loadingFullInner">
|
|
490
|
+ <img src="../../../assets/images/loading.gif" alt="" />
|
|
491
|
+ <div>加载中...</div>
|
|
492
|
+ </div>
|
|
493
|
+ </div>
|
|
494
|
+ </div>
|
|
495
|
+ </overlay-scrollbars>
|
|
496
|
+ <!-- 列表 end -->
|
|
497
|
+ </div>
|
|
498
|
+ <!-- 核对中 end -->
|
|
499
|
+ <!-- 临时增加 end -->
|
|
500
|
+ </div>
|
|
501
|
+ <!-- 主体部分 end -->
|
|
502
|
+ <!-- 二维码打印 -->
|
|
503
|
+ <div id="report" style="display: none">
|
|
504
|
+ <div style="display: inline-block" *ngFor="let img of codes">
|
|
505
|
+ <img style="width: 200px; height: 200px" [src]="img.base64" alt="" />
|
|
506
|
+ <div
|
|
507
|
+ style="
|
|
508
|
+ text-align: center;
|
|
509
|
+ font-size: 12px;
|
|
510
|
+ width: 200px;
|
|
511
|
+ font-weight: bold;
|
|
512
|
+ color: #0a0a0a;
|
|
513
|
+ "
|
|
514
|
+ >
|
|
515
|
+ {{ img.target }}
|
|
516
|
+ </div>
|
|
517
|
+ <div
|
|
518
|
+ style="
|
|
519
|
+ text-align: center;
|
|
520
|
+ font-size: 12px;
|
|
521
|
+ width: 200px;
|
|
522
|
+ font-weight: bold;
|
|
523
|
+ color: #0a0a0a;
|
|
524
|
+ "
|
|
525
|
+ >
|
|
526
|
+ {{ img.creatTime | date: "MM-dd HH:mm" }}
|
|
527
|
+ </div>
|
|
528
|
+ </div>
|
|
529
|
+ </div>
|
|
530
|
+</div>
|
|
531
|
+
|
|
532
|
+<!-- 药房端科室切换提示框 -->
|
|
533
|
+<app-hs-prompt-modal
|
|
534
|
+ [changeShow]="changeShow"
|
|
535
|
+ [closeTime]="closeTime"
|
|
536
|
+ [closeTimeFlag]="closeTimeFlag"
|
|
537
|
+ [show]="hsPromptModalShow"
|
|
538
|
+ (closeModelHs)="closeModelHs($event)"
|
|
539
|
+ (clearModelHs)="clearModelHs($event)"
|
|
540
|
+ deptType="pharmacy"
|
|
541
|
+>
|
|
542
|
+ <!-- 返回系统按钮 -->
|
|
543
|
+ <!-- 右侧悬浮框 -->
|
|
544
|
+ <div id="fixedMenu" class="fixed" *ngIf="mainRole">
|
|
545
|
+ <div class="right">
|
|
546
|
+ <div class="fixedMenu hujiaozhongxin">
|
|
547
|
+ <div class="menuItems">
|
|
548
|
+ <div class="item">快捷菜单</div>
|
|
549
|
+ </div>
|
|
550
|
+ </div>
|
|
551
|
+ <div class="fixedMenu">
|
|
552
|
+ <div class="menuItems">
|
|
553
|
+ <div
|
|
554
|
+ class="others"
|
|
555
|
+ [ngStyle]="{
|
|
556
|
+ height: showLastItems
|
|
557
|
+ ? mainRole
|
|
558
|
+ ? 35 * 2 + 'px'
|
|
559
|
+ : 35 * 1 + 'px'
|
|
560
|
+ : 0
|
|
561
|
+ }"
|
|
562
|
+ >
|
|
563
|
+ <div
|
|
564
|
+ [ngClass]="{ item: true, checked: fixedTab == 'back' }"
|
|
565
|
+ *ngIf="mainRole"
|
|
566
|
+ (click)="checkFixedTab('toSystem')"
|
|
567
|
+ >
|
|
568
|
+ 返回系统
|
|
569
|
+ </div>
|
|
570
|
+ </div>
|
|
571
|
+ </div>
|
|
572
|
+ <div class="arrow" *ngIf="!showLastItems" (click)="fixedMenuXiala()">
|
|
573
|
+ <i class="icon_transport transport-xiala2-01"></i>
|
|
574
|
+ </div>
|
|
575
|
+ <div class="arrow" *ngIf="showLastItems" (click)="fixedMenuShangla()">
|
|
576
|
+ <i class="icon_transport transport-shangla-"></i>
|
|
577
|
+ </div>
|
|
578
|
+ </div>
|
|
579
|
+ </div>
|
|
580
|
+ <div
|
|
581
|
+ *ngIf="showLastItems && fixedTab != ''"
|
|
582
|
+ (click)="fixedMenuShangla()"
|
|
583
|
+ class="fixedMark"
|
|
584
|
+ ></div>
|
|
585
|
+ </div>
|
|
586
|
+</app-hs-prompt-modal>
|