|
@@ -319,7 +319,7 @@
|
319
|
319
|
class="row"
|
320
|
320
|
style="padding: 2px 0; line-height: 23px; display: flex"
|
321
|
321
|
>
|
322
|
|
- <div class="inline_block">
|
|
322
|
+ <div class="inline_block" style="flex: 1;">
|
323
|
323
|
血管通路:
|
324
|
324
|
<div
|
325
|
325
|
class="under_line"
|
|
@@ -330,12 +330,12 @@
|
330
|
330
|
{{ predialysis.blood_access_part_opera_name }}
|
331
|
331
|
</div>
|
332
|
332
|
</div>
|
333
|
|
- <div class="inline_block" style="margin-left: 10px">
|
|
333
|
+ <div class="inline_block" style="flex: 1;">
|
334
|
334
|
内瘘:
|
335
|
335
|
<div
|
336
|
336
|
class="under_line"
|
337
|
337
|
style="
|
338
|
|
- width: 180px;
|
|
338
|
+ width: 80%;
|
339
|
339
|
text-align: center;
|
340
|
340
|
white-space: normal;
|
341
|
341
|
"
|
|
@@ -350,7 +350,7 @@
|
350
|
350
|
|
351
|
351
|
<div
|
352
|
352
|
class="inline_block"
|
353
|
|
- style="margin-left: 10px; flex: 1.4"
|
|
353
|
+ style="flex: 1"
|
354
|
354
|
>
|
355
|
355
|
导管:
|
356
|
356
|
<div
|
|
@@ -846,7 +846,11 @@
|
846
|
846
|
}}
|
847
|
847
|
</div>
|
848
|
848
|
<span v-if="prescription.anticoagulant == 4">mg</span>
|
849
|
|
- <span v-if="prescription.anticoagulant == 3">iu</span>
|
|
849
|
+ <span v-if="prescription.anticoagulant == 3 ||
|
|
850
|
+ prescription.anticoagulant == 6 || prescription.anticoagulant == 7"
|
|
851
|
+ >
|
|
852
|
+ iu
|
|
853
|
+ </span>
|
850
|
854
|
<span v-if="prescription.anticoagulant == 2">iu</span>
|
851
|
855
|
<span v-if="prescription.anticoagulant == 1">mg</span>
|
852
|
856
|
</div>
|
|
@@ -876,7 +880,11 @@
|
876
|
880
|
</div>
|
877
|
881
|
<span v-if="prescription.anticoagulant == 5">ml/h</span>
|
878
|
882
|
<span v-if="prescription.anticoagulant == 4">mg/h</span>
|
879
|
|
- <span v-if="prescription.anticoagulant == 3">iu/h</span>
|
|
883
|
+ <span v-if="prescription.anticoagulant == 3 ||
|
|
884
|
+ prescription.anticoagulant == 6 || prescription.anticoagulant == 7"
|
|
885
|
+ >
|
|
886
|
+ iu/h
|
|
887
|
+ </span>
|
880
|
888
|
<span v-if="prescription.anticoagulant == 2">iu/h</span>
|
881
|
889
|
<span v-if="prescription.anticoagulant == 1">mg/h</span>
|
882
|
890
|
</div>
|
|
@@ -931,8 +939,13 @@
|
931
|
939
|
: "/"
|
932
|
940
|
}}
|
933
|
941
|
</div>
|
|
942
|
+ <!-- {{ getzongliang(prescription.anticoagulant) }} -->
|
934
|
943
|
<span v-if="prescription.anticoagulant == 4">mg</span>
|
935
|
|
- <span v-if="prescription.anticoagulant == 3">iu</span>
|
|
944
|
+ <span v-if="prescription.anticoagulant == 3 ||
|
|
945
|
+ prescription.anticoagulant == 6 || prescription.anticoagulant == 7"
|
|
946
|
+ >
|
|
947
|
+ iu
|
|
948
|
+ </span>
|
936
|
949
|
<span v-if="prescription.anticoagulant == 2">iu</span>
|
937
|
950
|
<span v-if="prescription.anticoagulant == 1">mg</span>
|
938
|
951
|
</div>
|
|
@@ -2632,6 +2645,36 @@ export default {
|
2632
|
2645
|
break;
|
2633
|
2646
|
}
|
2634
|
2647
|
},
|
|
2648
|
+ getshouji(id){
|
|
2649
|
+ const options = this.anticoagulantsConfit
|
|
2650
|
+ if(id!=0){
|
|
2651
|
+ for(let i in options){
|
|
2652
|
+ if(options[i].id == id){
|
|
2653
|
+ return options[i].shouji_unit
|
|
2654
|
+ }
|
|
2655
|
+ }
|
|
2656
|
+ }
|
|
2657
|
+ },
|
|
2658
|
+ getweichi(id){
|
|
2659
|
+ const options = this.anticoagulantsConfit
|
|
2660
|
+ if(id!=0){
|
|
2661
|
+ for(let i in options){
|
|
2662
|
+ if(options[i].id == id){
|
|
2663
|
+ return options[i].weichi_unit
|
|
2664
|
+ }
|
|
2665
|
+ }
|
|
2666
|
+ }
|
|
2667
|
+ },
|
|
2668
|
+ getzongliang(id){
|
|
2669
|
+ const options = this.anticoagulantsConfit
|
|
2670
|
+ if(id!=0){
|
|
2671
|
+ for(let i in options){
|
|
2672
|
+ if(options[i].id == id){
|
|
2673
|
+ return options[i].zongliang_unit
|
|
2674
|
+ }
|
|
2675
|
+ }
|
|
2676
|
+ }
|
|
2677
|
+ }
|
2635
|
2678
|
},
|
2636
|
2679
|
watch: {
|
2637
|
2680
|
"patientInfo.gender": function () {
|