|
@@ -538,7 +538,10 @@
|
538
|
538
|
</div>
|
539
|
539
|
<div class="printCell" style="display:flex;" v-if="org_id ==10598 || org_id == 0">
|
540
|
540
|
<div style="">透析时长:
|
541
|
|
- <span>{{main_collection.prescription.dialysis_duration_hour }}小时 <span v-if="main_collection.prescription.dialysis_duration_minute>0">{{main_collection.prescription.dialysis_duration_minute }}分 </span></span>
|
|
541
|
+ <span>{{main_collection.prescription.dialysis_duration_hour }}小时 <span v-if="main_collection.prescription.dialysis_duration_minute>0">{{main_collection.prescription.dialysis_duration_minute }}分 </span></span>
|
|
542
|
+ </div>
|
|
543
|
+ <div style="">置换方式:
|
|
544
|
+ {{ getDisplaceLiquiPart(main_collection.prescription.displace_liqui_part) }}
|
542
|
545
|
</div>
|
543
|
546
|
</div>
|
544
|
547
|
</div>
|
|
@@ -1548,10 +1551,11 @@ export default {
|
1548
|
1551
|
// end_time2:'',
|
1549
|
1552
|
first_monitor:{},
|
1550
|
1553
|
last_monitor:{},
|
|
1554
|
+ displaceLiquiPartOptions:[]
|
1551
|
1555
|
}
|
1552
|
1556
|
},
|
1553
|
1557
|
created() {
|
1554
|
|
-
|
|
1558
|
+ this.displaceLiquiPartOptions = this.$store.getters.displace_liqui;
|
1555
|
1559
|
this.blood_access_part_opera = getDataConfig('hemodialysis', 'vascular_access_desc')
|
1556
|
1560
|
this.org_id = this.$store.getters.xt_user.org.id,
|
1557
|
1561
|
this.printDate = moment().format("YYYY-MM-DD HH:mm:ss")
|
|
@@ -1766,6 +1770,16 @@ export default {
|
1766
|
1770
|
this.websocketSend(unObj)
|
1767
|
1771
|
},
|
1768
|
1772
|
methods: {
|
|
1773
|
+ getDisplaceLiquiPart: function (val) {
|
|
1774
|
+ let displace_liqui_part_name = "/";
|
|
1775
|
+ const displace_liqui_part = this.displaceLiquiPartOptions;
|
|
1776
|
+ for (let i = 0; i < displace_liqui_part.length; i++) {
|
|
1777
|
+ if (displace_liqui_part[i].id == val) {
|
|
1778
|
+ displace_liqui_part_name = displace_liqui_part[i].name;
|
|
1779
|
+ }
|
|
1780
|
+ }
|
|
1781
|
+ return displace_liqui_part_name;
|
|
1782
|
+ },
|
1769
|
1783
|
getModeName(id){
|
1770
|
1784
|
var name = ""
|
1771
|
1785
|
if(id == 1){
|