28169 vor 10 Monaten
Ursprung
Commit
e6dc5afef0

+ 7 - 2
src/xt_pages/dialysis/batch_print/batch_print_order_six.vue Datei anzeigen

@@ -1651,7 +1651,10 @@
1651 1651
                               org_id == 9671 ||
1652 1652
                               org_id ==10600 ||
1653 1653
                               org_id ==10629 ||
1654
-                              org_id == 10510
1654
+                              org_id == 10510 ||
1655
+                              org_id == 0 ||
1656
+                              org_id == 10598
1657
+
1655 1658
                             "
1656 1659
                           >
1657 1660
                             KT/V
@@ -1885,7 +1888,9 @@
1885 1888
                               org_id == 9671 ||
1886 1889
                               org_id == 10600 ||
1887 1890
                               org_id ==10629 ||
1888
-                              org_id ==10510
1891
+                              org_id ==10510 ||
1892
+                              org_id== 0 ||
1893
+                              org_id ==10598
1889 1894
                             "
1890 1895
                           >
1891 1896
                             {{ monitor_record.ktv }}

+ 16 - 2
src/xt_pages/dialysis/details/index.vue Datei anzeigen

@@ -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>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
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){

+ 4 - 4
src/xt_pages/dialysis/template/DialysisPrintOrderSix.vue Datei anzeigen

@@ -1729,8 +1729,8 @@
1729 1729
                           <span v-if="org_id!=10598">(ml)</span>
1730 1730
                           <span v-if="org_id==10598">(L)</span>
1731 1731
                         </td>
1732
-                        <td width="50" v-if="org_id == 3877 || org_id == 0 || org_id == 10449">滤前压(mmHg)</td>
1733
-                        <td width="50" v-if="org_id == 9538 || org_id ==10600 || org_id ==10629 || org_id ==10510">KT/V</td>
1732
+                        <td width="50" v-if="org_id == 3877 || org_id == 10449">滤前压(mmHg)</td>
1733
+                        <td width="50" v-if="org_id == 9538 || org_id ==10600 || org_id ==10629 || org_id ==10510 || org_id == 10580 || org_id == 0 || org_id == 10598">KT/V</td>
1734 1734
                         <td width="50" v-if="org_id == 9919">在线尿素监测</td>
1735 1735
                         <td width="50" v-if="org_id == 9671">在线尿素监测</td>
1736 1736
                         <td width="50" v-if="org_id == 9538 || org_id == 9919 || org_id== 9671">血容量<br />(L)</td>
@@ -1867,7 +1867,7 @@
1867 1867
                           </span>
1868 1868
                         </td>
1869 1869
                         <td width="50" v-if="org_id == 3877 || org_id == 0 || org_id == 10449">{{ monitor.filter_pressure?monitor.filter_pressure:""}}</td>
1870
-                        <td width="50" v-if="org_id == 9919 || org_id == 9538 || org_id == 9671 || org_id ==10600 || org_id ==10629 || org_id ==10510">
1870
+                        <td width="50" v-if="org_id == 9919 || org_id == 9538 || org_id == 9671 || org_id ==10600 || org_id ==10629 || org_id ==10510 || org_id ==10580 || org_id == 0 || org_id ==10598">
1871 1871
                           {{ monitor.ktv?monitor.ktv:"" }}
1872 1872
                         </td>
1873 1873
                         <td width="50" v-if="org_id == 9538 || org_id == 9919 || org_id == 9671">
@@ -1967,7 +1967,7 @@
1967 1967
                           "
1968 1968
                           width="50"
1969 1969
                         ></td>
1970
-                        <td v-if="org_id == 9919||org_id == 9538 || org_id == 9671"></td>
1970
+                        <td v-if="org_id == 9919||org_id == 9538 || org_id == 9671 || org_id == 0"></td>
1971 1971
                         <td v-if="org_id == 9538"></td>
1972 1972
                         <td v-if="org_id == 10598 || org_id == 0"></td>
1973 1973
                         <td v-if="org_id == 10490 || org_id == 0"></td>

+ 19 - 2
src/xt_pages/outpatientDoctorStation/doctorDesk.vue Datei anzeigen

@@ -646,9 +646,14 @@
646 646
                 </div>
647 647
                 <div class="printCell" style="display:flex;" v-if="org_id ==10598 || org_id == 0">
648 648
                   <div style="">透析时长:
649
-                   <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>
649
+                   <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>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
650
+                  </div>
651
+                  <div style="">置换方式:
652
+                    {{ getDisplaceLiquiPart(main_collection.prescription.displace_liqui_part) }}
650 653
                   </div>
651 654
                 </div>
655
+
656
+               
652 657
               </div>
653 658
             </div>
654 659
           </div>
@@ -786,11 +791,22 @@ export default {
786 791
       patient_diagnoses: [],
787 792
       // zuobiao_project:[],
788 793
       befor:{},
789
-      LastCaseHistory:{}
794
+      LastCaseHistory:{},
795
+      displaceLiquiPartOptions:[],
790 796
     }
791 797
   },
792 798
 
793 799
   methods: {
800
+    getDisplaceLiquiPart: function (val) {
801
+      let displace_liqui_part_name = "/";
802
+      const displace_liqui_part = this.displaceLiquiPartOptions;
803
+      for (let i = 0; i < displace_liqui_part.length; i++) {
804
+        if (displace_liqui_part[i].id == val) {
805
+          displace_liqui_part_name = displace_liqui_part[i].name;
806
+        }
807
+      }
808
+      return displace_liqui_part_name;
809
+    },
794 810
     open_four(){
795 811
       this.$refs.prescriptions.getZuobiaoGoodStock()
796 812
       this.$refs.prescriptions.getZuobiaoDrugStock()
@@ -6072,6 +6088,7 @@ export default {
6072 6088
 
6073 6089
   },
6074 6090
   created() {
6091
+    this.displaceLiquiPartOptions = this.$store.getters.displace_liqui;
6075 6092
     this.anticoagulants_confit = this.$store.getters.anticoagulants_confit
6076 6093
     this.printDate = moment().format('YYYY-MM-DD HH:mm:ss')
6077 6094
     this.$nextTick(() => {