28169 1 gadu atpakaļ
vecāks
revīzija
662ff34bd0

+ 105 - 2
src/xt_pages/dialysis/details/index.vue Parādīt failu

275
         <div class="table_panel">
275
         <div class="table_panel">
276
             <div v-for="(main_collection,index) in printList" :key="index">
276
             <div v-for="(main_collection,index) in printList" :key="index">
277
               <div class="signPrint" style="width: 360px;font-size:16px;">
277
               <div class="signPrint" style="width: 360px;font-size:16px;">
278
-                <div style="margin-left:50px;">姓名:
278
+                <div  style="margin-left:50px;">姓名:
279
                   <span>{{main_collection.patient.name}} </span>
279
                   <span>{{main_collection.patient.name}} </span>
280
                   ({{ main_collection.patient.dialysis_no }},{{getNewAge(main_collection.patient.id_card_no)  }}岁)
280
                   ({{ main_collection.patient.dialysis_no }},{{getNewAge(main_collection.patient.id_card_no)  }}岁)
281
                 </div>
281
                 </div>
282
+                <div class="printCell" style="display:flex;justify-content: space-around;" v-if="org_id ==10598 || org_id == 0">
283
+                  <div style="margin-left:-250px;">透析模式:
284
+                   <span>{{getModeName(main_collection.prescription.mode_id)  }}</span>
285
+                  </div>
286
+                </div>
282
                 <div class="printCell" style="display:flex;justify-content: space-around;">
287
                 <div class="printCell" style="display:flex;justify-content: space-around;">
283
                   <span style="display: block;width: 50%;">
288
                   <span style="display: block;width: 50%;">
284
                     床号:{{ main_collection.number.number }}
289
                     床号:{{ main_collection.number.number }}
522
                   </span>
527
                   </span>
523
                   </span>
528
                   </span>
524
                 </div>
529
                 </div>
530
+                <div class="printCell" style="display:flex;justify-content: space-around;"  v-if="org_id==10598 || org_id == 0">
531
+                  <span style="display: block;margin-left: -30px;">目标脱水量:{{main_collection.prescription.target_ultrafiltration}}
532
+                    <span v-if="$store.getters.xt_user.org.id == 10278 || $store.getters.xt_user.org.id == 10460">ml</span>
533
+                     <span v-else>L</span>
534
+                  </span> 
535
+                  <span>
536
+                    血流量:{{ main_collection.prescription.blood_flow_volume }} ml/min
537
+                  </span>
538
+                </div>
525
               </div>
539
               </div>
526
             </div>
540
             </div>
527
 
541
 
1743
     this.websocketSend(unObj)
1757
     this.websocketSend(unObj)
1744
   },
1758
   },
1745
   methods: {
1759
   methods: {
1760
+    getModeName(id){
1761
+        var name = ""
1762
+        if(id == 1){
1763
+          name = "HD"
1764
+        }
1765
+        if(id == 2){
1766
+          name = "HDF"
1767
+        }
1768
+        if(id == 3){
1769
+          name = "HD+HP"
1770
+        }
1771
+        if(id == 4){
1772
+          name = "HP"
1773
+        }
1774
+        if(id == 5){
1775
+          name = "HF"
1776
+        }
1777
+        if(id == 6){
1778
+          name = "SCUF"
1779
+        }
1780
+        if(id == 7){
1781
+          name = "IUF"
1782
+        }
1783
+        if(id == 8){
1784
+          name = "HFHD"
1785
+        }
1786
+        if(id == 9){
1787
+          name = "HFHD+HP"
1788
+        }
1789
+        if(id == 10){
1790
+          name = "PHF"
1791
+        }
1792
+        if(id == 11){
1793
+          name = "HFR"
1794
+        }
1795
+        if(id == 12){
1796
+          name = "HDF+HP"
1797
+        }
1798
+        if(id == 13){
1799
+          name = "CRRT"
1800
+        }
1801
+        if(id == 14){
1802
+          name = "腹水回输"
1803
+        }
1804
+        if(id == 19){
1805
+          name = "IUF+HD"
1806
+        }
1807
+        if(id == 20){
1808
+          name = "UF"
1809
+        }
1810
+        if(id == 21){
1811
+          name = "HD+"
1812
+        }
1813
+        if(id == 22){
1814
+          name = "血浆胆红素吸附+HDF"
1815
+        }
1816
+        if(id == 23){
1817
+          name = "血浆胆红素吸附"
1818
+        }
1819
+        if(id == 24){
1820
+          name = "I-HDF"
1821
+        }
1822
+        if(id == 25){
1823
+          name = "HD高通"
1824
+        }
1825
+        if(id == 26){
1826
+          name = "CVVH"
1827
+        }
1828
+          if(id == 27){
1829
+          name = "CVVHD"
1830
+        }
1831
+          if(id == 28){
1832
+          name = "CVVHDF"
1833
+        }
1834
+          if(id == 29){
1835
+          name = "PE"
1836
+        }
1837
+          if(id == 30){
1838
+          name = "血浆胆红素吸附+HP"
1839
+        }
1840
+          if(id == 31){
1841
+          name = "HPD"
1842
+        }
1843
+          if(id == 32){
1844
+          name = "HDP"
1845
+        }
1846
+       return name
1847
+    },
1746
     // 透析次数
1848
     // 透析次数
1747
     chishuclick(row){
1849
     chishuclick(row){
1748
       this.cishu_dialogVisible=true
1850
       this.cishu_dialogVisible=true
2912
           this.printList = list
3014
           this.printList = list
2913
           this.assessmentAfterDislysis = assessmentAfterDislysis
3015
           this.assessmentAfterDislysis = assessmentAfterDislysis
2914
 
3016
 
2915
-          if(this.org_id == 0 || this.org_id ==10469){
3017
+          if(this.org_id ==10469){
2916
             this.centerDialogVisible = true
3018
             this.centerDialogVisible = true
2917
           }else{
3019
           }else{
2918
             this.startVisibility = true
3020
             this.startVisibility = true
3135
     }
3237
     }
3136
 
3238
 
3137
   },
3239
   },
3240
+ 
3138
   watch:{
3241
   watch:{
3139
     time_value:{
3242
     time_value:{
3140
       handler(newValue,oldValue){
3243
       handler(newValue,oldValue){

+ 3 - 3
src/xt_pages/outpatientDoctorStation/doctorDesk.vue Parādīt failu

373
                   ({{ main_collection.patient.dialysis_no }},{{ getNewAge(main_collection.patient.id_card_no) }}岁)
373
                   ({{ main_collection.patient.dialysis_no }},{{ getNewAge(main_collection.patient.id_card_no) }}岁)
374
                 </div>
374
                 </div>
375
                 <div class="printCell" style="display:flex;justify-content: space-around;" v-if="org_id ==10598 || org_id == 0">
375
                 <div class="printCell" style="display:flex;justify-content: space-around;" v-if="org_id ==10598 || org_id == 0">
376
-                  <div style="margin-left:-250px;">透析模式:
376
+                  <div style="margin-left:-240px;">透析模式:
377
                    <span>{{getModeName(main_collection.prescription.mode_id)  }}</span>
377
                    <span>{{getModeName(main_collection.prescription.mode_id)  }}</span>
378
                   </div>
378
                   </div>
379
                  
379
                  
632
                  
632
                  
633
                 </div>
633
                 </div>
634
                 <div class="printCell" style="display:flex;justify-content: space-around;"  v-if="org_id==10598 || org_id == 0">
634
                 <div class="printCell" style="display:flex;justify-content: space-around;"  v-if="org_id==10598 || org_id == 0">
635
-                  <span style="display: block;width: 50%;">处方脱水量:{{main_collection.prescription.target_ultrafiltration}}
636
-                    <span v-if="$store.getters.xt_user.org.id == 10278 || $store.getters.xt_user.org.id == 10460 ||  $store.getters.xt_user.org.id == 10598">ml</span>
635
+                  <span style="display: block;margin-left: -30px;">处方脱水量:{{main_collection.prescription.target_ultrafiltration}}
636
+                    <span v-if="$store.getters.xt_user.org.id == 10278 || $store.getters.xt_user.org.id == 10460">ml</span>
637
                      <span v-else>L</span>
637
                      <span v-else>L</span>
638
                   </span> 
638
                   </span> 
639
                   <span>
639
                   <span>