Parcourir la source

Merge remote-tracking branch 'origin/20230223_pc_vue_new_branch' into 20230223_pc_vue_new_branch

yq1 il y a 3 semaines
Parent
révision
2a072e4760

+ 4 - 0
src/xt_pages/outpatientDoctorStation/components/deskPrescription.vue Voir le fichier

@@ -4120,6 +4120,8 @@ export default {
4120 4120
               stock_count: 0,
4121 4121
               first_letter: project[i].first_letter,
4122 4122
               bbx01: project[i].bbx01,
4123
+              bby01: project[i].bby01,
4124
+
4123 4125
               zuobiao_stock_num: 0,
4124 4126
               number: ''
4125 4127
             }
@@ -4156,6 +4158,8 @@ export default {
4156 4158
               stock_count: good_info[i].stock_count,
4157 4159
               first_letter: good_info[i].first_letter,
4158 4160
               bbx01: good_info[i].bbx01,
4161
+              bby01: good_info[i].bby01,
4162
+
4159 4163
               zuobiao_stock_num: 0,
4160 4164
               number: good_info[i].good_number
4161 4165
 

+ 97 - 1
src/xt_pages/outpatientDoctorStation/doctorDesk.vue Voir le fichier

@@ -365,11 +365,19 @@
365 365
         <div class="print_main_content">
366 366
           <div class="table_panel">
367 367
             <div v-for="(main_collection,index) in printList" :key="index">
368
+             
368 369
               <div class="signPrint" style="width: 360px;font-size:16px;">
370
+                
369 371
                 <div style="margin-left:50px;">姓名:
370 372
                   <span>{{ main_collection.patient.name }} </span>
371 373
                   ({{ main_collection.patient.dialysis_no }},{{ getNewAge(main_collection.patient.id_card_no) }}岁)
372 374
                 </div>
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;">透析模式:
377
+                   <span>{{getModeName(main_collection.prescription.mode_id)  }}</span>
378
+                  </div>
379
+                 
380
+                </div>
373 381
                 <div class="printCell" style="display:flex;justify-content: space-around;">
374 382
                   <span style="display: block;width: 50%;">
375 383
                     床号:{{ main_collection.number.number }}
@@ -5723,7 +5731,95 @@ export default {
5723 5731
         }
5724 5732
         return age
5725 5733
       }
5726
-    }
5734
+    },
5735
+    getModeName(id){
5736
+        var name = ""
5737
+        if(id == 1){
5738
+          name = "HD"
5739
+        }
5740
+        if(id == 2){
5741
+          name = "HDF"
5742
+        }
5743
+        if(id == 3){
5744
+          name = "HD+HP"
5745
+        }
5746
+        if(id == 4){
5747
+          name = "HP"
5748
+        }
5749
+        if(id == 5){
5750
+          name = "HF"
5751
+        }
5752
+        if(id == 6){
5753
+          name = "SCUF"
5754
+        }
5755
+        if(id == 7){
5756
+          name = "IUF"
5757
+        }
5758
+        if(id == 8){
5759
+          name = "HFHD"
5760
+        }
5761
+        if(id == 9){
5762
+          name = "HFHD+HP"
5763
+        }
5764
+        if(id == 10){
5765
+          name = "PHF"
5766
+        }
5767
+        if(id == 11){
5768
+          name = "HFR"
5769
+        }
5770
+        if(id == 12){
5771
+          name = "HDF+HP"
5772
+        }
5773
+        if(id == 13){
5774
+          name = "CRRT"
5775
+        }
5776
+        if(id == 14){
5777
+          name = "腹水回输"
5778
+        }
5779
+        if(id == 19){
5780
+          name = "IUF+HD"
5781
+        }
5782
+        if(id == 20){
5783
+          name = "UF"
5784
+        }
5785
+        if(id == 21){
5786
+          name = "HD+"
5787
+        }
5788
+        if(id == 22){
5789
+          name = "血浆胆红素吸附+HDF"
5790
+        }
5791
+        if(id == 23){
5792
+          name = "血浆胆红素吸附"
5793
+        }
5794
+        if(id == 24){
5795
+          name = "I-HDF"
5796
+        }
5797
+        if(id == 25){
5798
+          name = "HD高通"
5799
+        }
5800
+        if(id == 26){
5801
+          name = "CVVH"
5802
+        }
5803
+         if(id == 27){
5804
+          name = "CVVHD"
5805
+        }
5806
+         if(id == 28){
5807
+          name = "CVVHDF"
5808
+        }
5809
+         if(id == 29){
5810
+          name = "PE"
5811
+        }
5812
+         if(id == 30){
5813
+          name = "血浆胆红素吸附+HP"
5814
+        }
5815
+         if(id == 31){
5816
+          name = "HPD"
5817
+        }
5818
+         if(id == 32){
5819
+          name = "HDP"
5820
+        }
5821
+        return name
5822
+      },
5727 5823
 
5728 5824
   },
5729 5825
   created() {