|
@@ -111,7 +111,7 @@
|
111
|
111
|
诊断:
|
112
|
112
|
<div
|
113
|
113
|
class="under_line"
|
114
|
|
- style="width: 640px;text-align: left;word-break: break-all;word-wrap: break-word;display: inline-block;white-space: pre-wrap;"
|
|
114
|
+ style="width: 740px;text-align: left;word-break: break-all;word-wrap: break-word;display: inline-block;white-space: unset;"
|
115
|
115
|
>
|
116
|
116
|
{{ record.patient.diagnose }}
|
117
|
117
|
</div>
|
|
@@ -705,46 +705,12 @@
|
705
|
705
|
class="under_line"
|
706
|
706
|
style="width: 150px;text-align: center"
|
707
|
707
|
>
|
708
|
|
- <span
|
709
|
|
- class="under-line"
|
710
|
|
- v-if="record.prescription.anticoagulant == 0"
|
711
|
|
- > /</span
|
712
|
|
- >
|
713
|
|
- <span
|
714
|
|
- class="under-line"
|
715
|
|
- v-if="record.prescription.anticoagulant == 1"
|
716
|
|
- > 无肝素</span
|
717
|
|
- >
|
718
|
|
- <span
|
719
|
|
- class="under-line"
|
720
|
|
- v-if="record.prescription.anticoagulant == 2"
|
721
|
|
- > 普通肝素</span
|
722
|
|
- >
|
723
|
|
- <span
|
724
|
|
- class="under-line"
|
725
|
|
- v-if="record.prescription.anticoagulant == 3"
|
726
|
|
- > 低分子肝素</span
|
727
|
|
- >
|
728
|
|
- <span
|
729
|
|
- class="under-line"
|
730
|
|
- v-if="record.prescription.anticoagulant == 4"
|
731
|
|
- > 阿加曲班</span
|
732
|
|
- >
|
733
|
|
- <span
|
734
|
|
- class="under-line"
|
735
|
|
- v-if="record.prescription.anticoagulant == 5"
|
736
|
|
- > 枸橼酸钠</span
|
737
|
|
- >
|
738
|
|
- <span
|
739
|
|
- class="under-line"
|
740
|
|
- v-if="record.prescription.anticoagulant == 6"
|
741
|
|
- > 低分子肝素钙</span
|
742
|
|
- >
|
743
|
|
- <span
|
744
|
|
- class="under-line"
|
745
|
|
- v-if="record.prescription.anticoagulant == 7"
|
746
|
|
- > 低分子肝素钠</span
|
747
|
|
- >
|
|
708
|
+ {{
|
|
709
|
+ record.prescription &&
|
|
710
|
+ record.prescription.anticoagulant_name
|
|
711
|
+ ? record.prescription.anticoagulant_name
|
|
712
|
+ : "/"
|
|
713
|
+ }}
|
748
|
714
|
</div>
|
749
|
715
|
</div>
|
750
|
716
|
<div class="inline_block" style="margin-left:20px;">
|
|
@@ -753,96 +719,48 @@
|
753
|
719
|
class="under_line"
|
754
|
720
|
style="width: 50px;text-align: center;"
|
755
|
721
|
>
|
756
|
|
- <span class="under-line">{{
|
|
722
|
+ {{
|
|
723
|
+ record.prescription &&
|
757
|
724
|
record.prescription.anticoagulant_shouji
|
758
|
725
|
? record.prescription.anticoagulant_shouji
|
759
|
726
|
: "/"
|
760
|
|
- }}</span>
|
761
|
|
- <span
|
762
|
|
- v-if="
|
763
|
|
- record.prescription.anticoagulant == '枸橼酸钠'
|
764
|
|
- "
|
765
|
|
- >mg</span
|
766
|
|
- >
|
767
|
|
- <span
|
768
|
|
- v-if="
|
769
|
|
- record.prescription.anticoagulant == '阿加曲班'
|
770
|
|
- "
|
771
|
|
- >mg</span
|
772
|
|
- >
|
773
|
|
- <span
|
774
|
|
- v-if="
|
775
|
|
- record.prescription.anticoagulant == '低分子肝素'
|
776
|
|
- "
|
777
|
|
- >iu</span
|
778
|
|
- >
|
779
|
|
- <span
|
780
|
|
- v-if="
|
781
|
|
- record.prescription.anticoagulant == '普通肝素'
|
782
|
|
- "
|
783
|
|
- >iu</span
|
784
|
|
- >
|
785
|
|
- <span
|
786
|
|
- v-if="record.prescription.anticoagulant == '无肝素'"
|
787
|
|
- >mg</span
|
788
|
|
- >
|
789
|
|
- <span v-if="record.prescription.anticoagulant == 6"
|
790
|
|
- >iu</span
|
791
|
|
- >
|
792
|
|
- <span v-if="record.prescription.anticoagulant == 7"
|
793
|
|
- >iu</span
|
794
|
|
- >
|
795
|
|
-
|
|
727
|
+ }}
|
796
|
728
|
</div>
|
|
729
|
+ lu
|
797
|
730
|
</div>
|
798
|
731
|
<div class="inline_block" style="margin-left:20px;">
|
799
|
732
|
维持:
|
800
|
733
|
<div
|
|
734
|
+ v-if="
|
|
735
|
+ record.prescription &&
|
|
736
|
+ record.prescription.anticoagulant == 1
|
|
737
|
+ "
|
801
|
738
|
class="under_line"
|
802
|
739
|
style="width: 50px;text-align: center;"
|
803
|
740
|
>
|
804
|
|
- <span class="under-line"
|
805
|
|
- > {{
|
806
|
|
- record.prescription.anticoagulant_weichi
|
807
|
|
- ? record.prescription.anticoagulant_weichi
|
808
|
|
- : "/"
|
809
|
|
- }}</span
|
810
|
|
- >
|
811
|
|
- <span
|
812
|
|
- v-if="
|
813
|
|
- record.prescription.anticoagulant == '枸橼酸钠'
|
814
|
|
- "
|
815
|
|
- >ml/h</span
|
816
|
|
- >
|
817
|
|
- <span
|
818
|
|
- v-if="
|
819
|
|
- record.prescription.anticoagulant == '阿加曲班'
|
820
|
|
- "
|
821
|
|
- >mg/h</span
|
822
|
|
- >
|
823
|
|
- <span
|
824
|
|
- v-if="
|
825
|
|
- record.prescription.anticoagulant == '低分子肝素'
|
826
|
|
- "
|
827
|
|
- >iu/h</span
|
828
|
|
- >
|
829
|
|
- <span
|
830
|
|
- v-if="
|
831
|
|
- record.prescription.anticoagulant == '普通肝素'
|
832
|
|
- "
|
833
|
|
- >iu/h</span
|
834
|
|
- >
|
835
|
|
- <span
|
836
|
|
- v-if="record.prescription.anticoagulant == '无肝素'"
|
837
|
|
- >mg/h</span
|
838
|
|
- >
|
839
|
|
- <span v-if="record.prescription.anticoagulant == 6"
|
840
|
|
- >iu/h</span
|
841
|
|
- >
|
842
|
|
- <span v-if="record.prescription.anticoagulant == 7"
|
843
|
|
- >iu/h</span
|
844
|
|
- >
|
|
741
|
+ {{
|
|
742
|
+ record.prescription &&
|
|
743
|
+ record.prescription.anticoagulant_weichi
|
|
744
|
+ ? record.prescription.anticoagulant_weichi
|
|
745
|
+ : "/"
|
|
746
|
+ }}
|
845
|
747
|
</div>
|
|
748
|
+ <div
|
|
749
|
+ v-if="
|
|
750
|
+ record.prescription &&
|
|
751
|
+ record.prescription.anticoagulant != 1
|
|
752
|
+ "
|
|
753
|
+ class="under_line"
|
|
754
|
+ style="width: 50px;text-align: center;"
|
|
755
|
+ >
|
|
756
|
+ {{
|
|
757
|
+ record.prescription &&
|
|
758
|
+ record.prescription.anticoagulant_weichi
|
|
759
|
+ ? record.prescription.anticoagulant_weichi
|
|
760
|
+ : 0
|
|
761
|
+ }}
|
|
762
|
+ </div>
|
|
763
|
+ lu
|
846
|
764
|
</div>
|
847
|
765
|
<div class="inline_block" style="margin-left:20px;">
|
848
|
766
|
总量:
|
|
@@ -850,48 +768,14 @@
|
850
|
768
|
class="under_line"
|
851
|
769
|
style="width: 50px;text-align: center;"
|
852
|
770
|
>
|
853
|
|
- <span class="under-line"
|
854
|
|
- > {{
|
855
|
|
- record.prescription.anticoagulant_zongliang
|
856
|
|
- ? record.prescription.anticoagulant_zongliang
|
857
|
|
- : "0"
|
858
|
|
- }}</span
|
859
|
|
- >
|
860
|
|
- <span
|
861
|
|
- v-if="
|
862
|
|
- record.prescription.anticoagulant == '枸橼酸钠'
|
863
|
|
- "
|
864
|
|
- >mg</span
|
865
|
|
- >
|
866
|
|
- <span
|
867
|
|
- v-if="
|
868
|
|
- record.prescription.anticoagulant == '阿加曲班'
|
869
|
|
- "
|
870
|
|
- >mg</span
|
871
|
|
- >
|
872
|
|
- <span
|
873
|
|
- v-if="
|
874
|
|
- record.prescription.anticoagulant == '低分子肝素'
|
875
|
|
- "
|
876
|
|
- >iu</span
|
877
|
|
- >
|
878
|
|
- <span
|
879
|
|
- v-if="
|
880
|
|
- record.prescription.anticoagulant == '普通肝素'
|
881
|
|
- "
|
882
|
|
- >iu</span
|
883
|
|
- >
|
884
|
|
- <span
|
885
|
|
- v-if="record.prescription.anticoagulant == '无肝素'"
|
886
|
|
- >mg</span
|
887
|
|
- >
|
888
|
|
- <span v-if="record.prescription.anticoagulant == 6"
|
889
|
|
- >iu</span
|
890
|
|
- >
|
891
|
|
- <span v-if="record.prescription.anticoagulant == 7"
|
892
|
|
- >iu</span
|
893
|
|
- >
|
|
771
|
+ {{
|
|
772
|
+ record.prescription &&
|
|
773
|
+ record.prescription.anticoagulant_zongliang
|
|
774
|
+ ? record.prescription.anticoagulant_zongliang
|
|
775
|
+ : "/"
|
|
776
|
+ }}
|
894
|
777
|
</div>
|
|
778
|
+ lu
|
895
|
779
|
</div>
|
896
|
780
|
<div class="inline_block" style="margin-left:20px;">
|
897
|
781
|
透析机号:
|
|
@@ -1434,7 +1318,7 @@
|
1434
|
1318
|
class="row"
|
1435
|
1319
|
style="padding: 2px 0;line-height:23px;display:flex;"
|
1436
|
1320
|
>
|
1437
|
|
- <div class="inline_block" style="flex:1;">
|
|
1321
|
+ <!-- <div class="inline_block" style="flex:1;">
|
1438
|
1322
|
透析器凝血:
|
1439
|
1323
|
<div
|
1440
|
1324
|
class="under_line"
|
|
@@ -1447,7 +1331,7 @@
|
1447
|
1331
|
: "/"
|
1448
|
1332
|
}}
|
1449
|
1333
|
</div>
|
1450
|
|
- </div>
|
|
1334
|
+ </div> -->
|
1451
|
1335
|
<div class="inline_block" style="flex:1;">
|
1452
|
1336
|
内瘘:
|
1453
|
1337
|
<div
|
|
@@ -1508,6 +1392,21 @@
|
1508
|
1392
|
</div>
|
1509
|
1393
|
min
|
1510
|
1394
|
</div>
|
|
1395
|
+ <!-- 只是占位 -->
|
|
1396
|
+ <div class="inline_block" style="flex:1;visibility: hidden;">
|
|
1397
|
+ 透析器凝血:
|
|
1398
|
+ <div
|
|
1399
|
+ class="under_line"
|
|
1400
|
+ style="width: 70px;text-align: center"
|
|
1401
|
+ >
|
|
1402
|
+ {{
|
|
1403
|
+ record.assessment_after_dislysis &&
|
|
1404
|
+ record.assessment_after_dislysis.cruor
|
|
1405
|
+ ? record.assessment_after_dislysis.cruor
|
|
1406
|
+ : "/"
|
|
1407
|
+ }}
|
|
1408
|
+ </div>
|
|
1409
|
+ </div>
|
1511
|
1410
|
</div>
|
1512
|
1411
|
|
1513
|
1412
|
<div
|
|
@@ -1586,7 +1485,24 @@
|
1586
|
1485
|
ml
|
1587
|
1486
|
</div>
|
1588
|
1487
|
</div>
|
1589
|
|
-
|
|
1488
|
+ <div
|
|
1489
|
+ class="row"
|
|
1490
|
+ style="padding: 2px 0;line-height:23px;display:flex;"
|
|
1491
|
+ >
|
|
1492
|
+ <div class="inline_block" style="flex:1;">
|
|
1493
|
+ 透析器凝血:
|
|
1494
|
+ <span
|
|
1495
|
+ style="width: 95%;line-height: 25px;text-align: left;margin-left: 2px;text-underline-position: under; text-decoration: underline;"
|
|
1496
|
+ >
|
|
1497
|
+ {{
|
|
1498
|
+ record.assessment_after_dislysis &&
|
|
1499
|
+ record.assessment_after_dislysis.cruor
|
|
1500
|
+ ? record.assessment_after_dislysis.cruor
|
|
1501
|
+ : "/"
|
|
1502
|
+ }}
|
|
1503
|
+ </span>
|
|
1504
|
+ </div>
|
|
1505
|
+ </div>
|
1590
|
1506
|
<div
|
1591
|
1507
|
class="row"
|
1592
|
1508
|
style="padding: 2px 0;line-height:23px;display:flex;"
|
|
@@ -1616,7 +1532,7 @@
|
1616
|
1532
|
穿刺护士:
|
1617
|
1533
|
<div
|
1618
|
1534
|
class="under_line"
|
1619
|
|
- style="width: 60px;text-align: center"
|
|
1535
|
+ style="width: 80px;text-align: center"
|
1620
|
1536
|
>
|
1621
|
1537
|
<span
|
1622
|
1538
|
v-if="
|
|
@@ -1656,7 +1572,7 @@
|
1656
|
1572
|
治疗护士:
|
1657
|
1573
|
<div
|
1658
|
1574
|
class="under_line"
|
1659
|
|
- style="width: 60px;text-align: center"
|
|
1575
|
+ style="width: 80px;text-align: center"
|
1660
|
1576
|
>
|
1661
|
1577
|
<span
|
1662
|
1578
|
v-if="
|
|
@@ -1691,10 +1607,14 @@
|
1691
|
1607
|
</div>
|
1692
|
1608
|
<div class="inline_block" style="flex:1;">
|
1693
|
1609
|
核对人员:
|
1694
|
|
- <div v-if="record.check">
|
|
1610
|
+ <div
|
|
1611
|
+ class="under_line"
|
|
1612
|
+ style="width: 80px;text-align: left"
|
|
1613
|
+ v-if="record.dialysis_order == null"
|
|
1614
|
+ ></div>
|
|
1615
|
+ <div v-if="record.check" class="under_line" style="width: 80px;text-align: left">
|
1695
|
1616
|
<div
|
1696
|
|
- class="under_line"
|
1697
|
|
- style="width: 60px;text-align: left"
|
|
1617
|
+ style="width: 80px;text-align: left;display: inline-block;white-space: nowrap;"
|
1698
|
1618
|
v-if="
|
1699
|
1619
|
record.dialysis_order != null &&
|
1700
|
1620
|
record.dialysis_order.start_nurse ==
|
|
@@ -1720,8 +1640,55 @@
|
1720
|
1640
|
style="height: 40px;"
|
1721
|
1641
|
/>
|
1722
|
1642
|
</div>
|
|
1643
|
+ <div
|
|
1644
|
+ class="under_line"
|
|
1645
|
+ style="width: 80px;text-align: left"
|
|
1646
|
+ v-if="
|
|
1647
|
+ record.dialysis_order != null &&
|
|
1648
|
+ record.dialysis_order.start_nurse ==
|
|
1649
|
+ record.check.modifier
|
|
1650
|
+ "
|
|
1651
|
+ >
|
|
1652
|
+ <span
|
|
1653
|
+ v-if="
|
|
1654
|
+ setAdminUserES(record.check, 'creater') == ''
|
|
1655
|
+ "
|
|
1656
|
+ >{{ getAdminUser(record.check, "creater") }}</span
|
|
1657
|
+ >
|
|
1658
|
+ <img
|
|
1659
|
+ class="es-img"
|
|
1660
|
+ :src="setAdminUserES(record.check, 'creater')"
|
|
1661
|
+ alt=""
|
|
1662
|
+ srcset=""
|
|
1663
|
+ v-else
|
|
1664
|
+ />
|
|
1665
|
+ </div>
|
|
1666
|
+ <div
|
|
1667
|
+ class="under_line"
|
|
1668
|
+ style="width: 80px;text-align: left"
|
|
1669
|
+ v-if="
|
|
1670
|
+ record.dialysis_order != null &&
|
|
1671
|
+ record.dialysis_order.start_nurse !=
|
|
1672
|
+ record.check.modifier &&
|
|
1673
|
+ record.dialysis_order.start_nurse !=
|
|
1674
|
+ record.check.creater
|
|
1675
|
+ "
|
|
1676
|
+ >
|
|
1677
|
+ <span
|
|
1678
|
+ v-if="
|
|
1679
|
+ setAdminUserES(record.check, 'creater') == ''
|
|
1680
|
+ "
|
|
1681
|
+ >{{ getAdminUser(record.check, "creater") }}</span
|
|
1682
|
+ >
|
|
1683
|
+ <img
|
|
1684
|
+ class="es-img"
|
|
1685
|
+ :src="setAdminUserES(record.check, 'creater')"
|
|
1686
|
+ alt=""
|
|
1687
|
+ srcset=""
|
|
1688
|
+ v-else
|
|
1689
|
+ />
|
|
1690
|
+ </div>
|
1723
|
1691
|
</div>
|
1724
|
|
-
|
1725
|
1692
|
<div
|
1726
|
1693
|
class="under_line"
|
1727
|
1694
|
style="width: 80px;text-align: left"
|
|
@@ -1732,7 +1699,7 @@
|
1732
|
1699
|
下机护士:
|
1733
|
1700
|
<div
|
1734
|
1701
|
class="under_line"
|
1735
|
|
- style="width: 60px;text-align: center"
|
|
1702
|
+ style="width: 80px;text-align: center"
|
1736
|
1703
|
>
|
1737
|
1704
|
<span
|
1738
|
1705
|
v-if="
|