|
@@ -1,3 +1,4 @@
|
|
1
|
+<<<<<<< .mine
|
1
|
2
|
<template>
|
2
|
3
|
<div class="plate-box">
|
3
|
4
|
<h2 class="title border">
|
|
@@ -9,12 +10,12 @@
|
9
|
10
|
<!-- <div class="newDiv">
|
10
|
11
|
<table class="table">
|
11
|
12
|
<tr>
|
12
|
|
- <th width="12%">开嘱医生</th>
|
13
|
|
- <th width="18%">开始时间</th>
|
14
|
|
- <th width="31%">医嘱内容</th>
|
15
|
|
- <th width="18.6%">执行时间</th>
|
16
|
|
- <th width="10.5%">执行护士</th>
|
17
|
|
- <th v-if="template_id != 6" width="9.4%">核对护士</th>
|
|
13
|
+ <th width="12%">羲翊瓟汜</th>
|
|
14
|
+ <th width="18%">羲宎奀潔</th>
|
|
15
|
+ <th width="31%">瓟翊囀⺍</th>
|
|
16
|
+ <th width="18.6%">硒俴奀潔</th>
|
|
17
|
+ <th width="10.5%">硒俴誘尪</th>
|
|
18
|
+ <th v-if="template_id != 6" width="9.4%">瞄勤誘尪</th>
|
18
|
19
|
</tr>
|
19
|
20
|
|
20
|
21
|
<template v-for="(group) in advice_groups">
|
|
@@ -36,7 +37,7 @@
|
36
|
37
|
<span
|
37
|
38
|
v-if="advice.prescribing_number"
|
38
|
39
|
>{{advice.prescribing_number}}{{advice.prescribing_number_unit}}</span>
|
39
|
|
- <span v-if="advice.single_dose">单次用量{{advice.single_dose}}{{advice.single_dose_unit}}</span>
|
|
40
|
+ <span v-if="advice.single_dose">等棒蚚講{{advice.single_dose}}{{advice.single_dose_unit}}</span>
|
40
|
41
|
<span v-if="advice.parent_id == 0">{{advice.delivery_way}}</span>
|
41
|
42
|
<span v-if="advice.parent_id == 0">{{advice.execution_frequency}}</span>
|
42
|
43
|
<span v-if="advice.parent_id == 0&&advice.remark.length > 0">({{advice.remark}})</span>
|
|
@@ -57,15 +58,15 @@
|
57
|
58
|
<img style="margin-top: 50px; margin-bottom: 50px" src="@/assets/login/data.jpg" alt />
|
58
|
59
|
</div>-->
|
59
|
60
|
<el-table :data="statOrderdate" border style="width: 100%">
|
60
|
|
- <el-table-column fixed label="开嘱医生" width="100">
|
|
61
|
+ <el-table-column fixed label="羲翊瓟汜" width="100">
|
61
|
62
|
<template
|
62
|
63
|
slot-scope="scope"
|
63
|
64
|
>{{doctor_map[scope.row.advice_doctor] != undefined ? doctor_map[scope.row.advice_doctor].name : ""}}</template>
|
64
|
65
|
</el-table-column>
|
65
|
|
- <el-table-column label="开始时间" width="100" type="index">
|
|
66
|
+ <el-table-column label="羲宎奀潔" width="100" type="index">
|
66
|
67
|
<template slot-scope="scope">{{parseTime(scope.row.start_time, "{m}-{d} {h}:{i}")}}</template>
|
67
|
68
|
</el-table-column>
|
68
|
|
- <el-table-column label="医嘱内容" width="100">
|
|
69
|
+ <el-table-column label="瓟翊囀⺍" width="100">
|
69
|
70
|
<template slot-scope="scope">
|
70
|
71
|
<span>{{scope.row.advice_name }}</span>
|
71
|
72
|
<!-- <span>{{scope.row.drug_spec}}{{scope.row.drug_spec_unit}} * {{scope.row.prescribing_number}}{{scope.row.prescribing_number_unit}}</span> -->
|
|
@@ -75,16 +76,16 @@
|
75
|
76
|
>{{scope.row.prescribing_number}}{{scope.row.prescribing_number_unit}}</span>
|
76
|
77
|
<span
|
77
|
78
|
v-if="scope.row.single_dose"
|
78
|
|
- >单次用量{{scope.row.single_dose}}{{scope.row.single_dose_unit}}</span>
|
|
79
|
+ >等棒蚚講{{scope.row.single_dose}}{{scope.row.single_dose_unit}}</span>
|
79
|
80
|
<span v-if="scope.row.parent_id == 0">{{scope.row.delivery_way}}</span>
|
80
|
81
|
<span v-if="scope.row.parent_id == 0">{{scope.row.execution_frequency}}</span>
|
81
|
82
|
<!-- <span v-if="scope.row.parent_id == 0&&scope.row.remark.length > 0">({{scope.row.remark}})</span> -->
|
82
|
83
|
</template>
|
83
|
84
|
</el-table-column>
|
84
|
|
- <el-table-column label="执行时间" width="100">
|
|
85
|
+ <el-table-column label="硒俴奀潔" width="100">
|
85
|
86
|
<template slot-scope="scope">{{parseTime(scope.row.execution_time, "{m}-{d} {h}:{i}")}}</template>
|
86
|
87
|
</el-table-column>
|
87
|
|
- <el-table-column label="执行护士" width="200">
|
|
88
|
+ <el-table-column label="硒俴誘尪" width="200">
|
88
|
89
|
<template
|
89
|
90
|
slot-scope="scope"
|
90
|
91
|
>{{scope.row.checker != 0 ? (doctor_map[scope.row.checker] != undefined ? doctor_map[scope.row.checker].name : "") : ""}}</template>
|
|
@@ -100,7 +101,7 @@ export default {
|
100
|
101
|
name: "statOrder",
|
101
|
102
|
data() {
|
102
|
103
|
return {
|
103
|
|
- title: "临时医嘱 ",
|
|
104
|
+ title: "還奀瓟翊 ",
|
104
|
105
|
template_id: 0,
|
105
|
106
|
tableDate: [],
|
106
|
107
|
statOrderdate: []
|
|
@@ -256,3 +257,263 @@ export default {
|
256
|
257
|
padding: 6px 0;
|
257
|
258
|
}
|
258
|
259
|
</style>
|
|
260
|
+=======
|
|
261
|
+
|
|
262
|
+
|
|
263
|
+
|
|
264
|
+
|
|
265
|
+
|
|
266
|
+
|
|
267
|
+
|
|
268
|
+
|
|
269
|
+
|
|
270
|
+
|
|
271
|
+
|
|
272
|
+
|
|
273
|
+
|
|
274
|
+
|
|
275
|
+
|
|
276
|
+
|
|
277
|
+
|
|
278
|
+
|
|
279
|
+
|
|
280
|
+
|
|
281
|
+
|
|
282
|
+
|
|
283
|
+
|
|
284
|
+
|
|
285
|
+
|
|
286
|
+
|
|
287
|
+
|
|
288
|
+
|
|
289
|
+
|
|
290
|
+
|
|
291
|
+
|
|
292
|
+
|
|
293
|
+
|
|
294
|
+
|
|
295
|
+
|
|
296
|
+
|
|
297
|
+
|
|
298
|
+
|
|
299
|
+
|
|
300
|
+
|
|
301
|
+
|
|
302
|
+
|
|
303
|
+
|
|
304
|
+
|
|
305
|
+
|
|
306
|
+
|
|
307
|
+
|
|
308
|
+
|
|
309
|
+
|
|
310
|
+
|
|
311
|
+
|
|
312
|
+
|
|
313
|
+
|
|
314
|
+
|
|
315
|
+
|
|
316
|
+
|
|
317
|
+
|
|
318
|
+
|
|
319
|
+
|
|
320
|
+
|
|
321
|
+
|
|
322
|
+
|
|
323
|
+
|
|
324
|
+
|
|
325
|
+
|
|
326
|
+
|
|
327
|
+
|
|
328
|
+
|
|
329
|
+
|
|
330
|
+
|
|
331
|
+
|
|
332
|
+
|
|
333
|
+
|
|
334
|
+
|
|
335
|
+
|
|
336
|
+
|
|
337
|
+
|
|
338
|
+
|
|
339
|
+
|
|
340
|
+
|
|
341
|
+
|
|
342
|
+
|
|
343
|
+
|
|
344
|
+
|
|
345
|
+
|
|
346
|
+
|
|
347
|
+
|
|
348
|
+
|
|
349
|
+
|
|
350
|
+
|
|
351
|
+
|
|
352
|
+
|
|
353
|
+
|
|
354
|
+
|
|
355
|
+
|
|
356
|
+
|
|
357
|
+
|
|
358
|
+
|
|
359
|
+
|
|
360
|
+
|
|
361
|
+
|
|
362
|
+
|
|
363
|
+
|
|
364
|
+
|
|
365
|
+
|
|
366
|
+
|
|
367
|
+
|
|
368
|
+
|
|
369
|
+
|
|
370
|
+
|
|
371
|
+
|
|
372
|
+
|
|
373
|
+
|
|
374
|
+
|
|
375
|
+
|
|
376
|
+
|
|
377
|
+
|
|
378
|
+
|
|
379
|
+
|
|
380
|
+
|
|
381
|
+
|
|
382
|
+
|
|
383
|
+
|
|
384
|
+
|
|
385
|
+
|
|
386
|
+
|
|
387
|
+
|
|
388
|
+
|
|
389
|
+
|
|
390
|
+
|
|
391
|
+
|
|
392
|
+
|
|
393
|
+
|
|
394
|
+
|
|
395
|
+
|
|
396
|
+
|
|
397
|
+
|
|
398
|
+
|
|
399
|
+
|
|
400
|
+
|
|
401
|
+
|
|
402
|
+
|
|
403
|
+
|
|
404
|
+
|
|
405
|
+
|
|
406
|
+
|
|
407
|
+
|
|
408
|
+
|
|
409
|
+
|
|
410
|
+
|
|
411
|
+
|
|
412
|
+
|
|
413
|
+
|
|
414
|
+
|
|
415
|
+
|
|
416
|
+
|
|
417
|
+
|
|
418
|
+
|
|
419
|
+
|
|
420
|
+
|
|
421
|
+
|
|
422
|
+
|
|
423
|
+
|
|
424
|
+
|
|
425
|
+
|
|
426
|
+
|
|
427
|
+
|
|
428
|
+
|
|
429
|
+
|
|
430
|
+
|
|
431
|
+
|
|
432
|
+
|
|
433
|
+
|
|
434
|
+
|
|
435
|
+
|
|
436
|
+
|
|
437
|
+
|
|
438
|
+
|
|
439
|
+
|
|
440
|
+
|
|
441
|
+
|
|
442
|
+
|
|
443
|
+
|
|
444
|
+
|
|
445
|
+
|
|
446
|
+
|
|
447
|
+
|
|
448
|
+
|
|
449
|
+
|
|
450
|
+
|
|
451
|
+
|
|
452
|
+
|
|
453
|
+
|
|
454
|
+
|
|
455
|
+
|
|
456
|
+
|
|
457
|
+
|
|
458
|
+
|
|
459
|
+
|
|
460
|
+
|
|
461
|
+
|
|
462
|
+
|
|
463
|
+
|
|
464
|
+
|
|
465
|
+
|
|
466
|
+
|
|
467
|
+
|
|
468
|
+
|
|
469
|
+
|
|
470
|
+
|
|
471
|
+
|
|
472
|
+
|
|
473
|
+
|
|
474
|
+
|
|
475
|
+
|
|
476
|
+
|
|
477
|
+
|
|
478
|
+
|
|
479
|
+
|
|
480
|
+
|
|
481
|
+
|
|
482
|
+
|
|
483
|
+
|
|
484
|
+
|
|
485
|
+
|
|
486
|
+
|
|
487
|
+
|
|
488
|
+
|
|
489
|
+
|
|
490
|
+
|
|
491
|
+
|
|
492
|
+
|
|
493
|
+
|
|
494
|
+
|
|
495
|
+
|
|
496
|
+
|
|
497
|
+
|
|
498
|
+
|
|
499
|
+
|
|
500
|
+
|
|
501
|
+
|
|
502
|
+
|
|
503
|
+
|
|
504
|
+
|
|
505
|
+
|
|
506
|
+
|
|
507
|
+
|
|
508
|
+
|
|
509
|
+
|
|
510
|
+
|
|
511
|
+
|
|
512
|
+
|
|
513
|
+
|
|
514
|
+
|
|
515
|
+
|
|
516
|
+
|
|
517
|
+
|
|
518
|
+
|
|
519
|
+>>>>>>> .theirs
|