Browse Source

Merge branch '20230223_pc_vue_new_branch' of http://git.shengws.com/csx/Vue_New into 20230223_pc_vue_new_branch

陈少旭 10 months ago
parent
commit
d08285ee2b

+ 1 - 0
src/xt_pages/outpatientDoctorStation/checkTemplate/printfour.vue View File

2
   <div id="prescription-print">
2
   <div id="prescription-print">
3
     <div v-for="(item, index) in advicePrint" :key="index">
3
     <div v-for="(item, index) in advicePrint" :key="index">
4
       <div id="prescription-print" class="prescription-print" style="page-break-after: always">
4
       <div id="prescription-print" class="prescription-print" style="page-break-after: always">
5
+        <div class="printTitle">孝感源生堂血液透析中心</div>
5
         <div class="printTitle">检验申请单</div>
6
         <div class="printTitle">检验申请单</div>
6
 
7
 
7
         <div style="border: 1px solid #000;margin-bottom: 10px;">
8
         <div style="border: 1px solid #000;margin-bottom: 10px;">

+ 97 - 1
src/xt_pages/outpatientDoctorStation/doctorDesk.vue View File

365
         <div class="print_main_content">
365
         <div class="print_main_content">
366
           <div class="table_panel">
366
           <div class="table_panel">
367
             <div v-for="(main_collection,index) in printList" :key="index">
367
             <div v-for="(main_collection,index) in printList" :key="index">
368
+             
368
               <div class="signPrint" style="width: 360px;font-size:16px;">
369
               <div class="signPrint" style="width: 360px;font-size:16px;">
370
+                
369
                 <div style="margin-left:50px;">姓名:
371
                 <div style="margin-left:50px;">姓名:
370
                   <span>{{ main_collection.patient.name }} </span>
372
                   <span>{{ main_collection.patient.name }} </span>
371
                   ({{ 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) }}岁)
372
                 </div>
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
                 <div class="printCell" style="display:flex;justify-content: space-around;">
381
                 <div class="printCell" style="display:flex;justify-content: space-around;">
374
                   <span style="display: block;width: 50%;">
382
                   <span style="display: block;width: 50%;">
375
                     床号:{{ main_collection.number.number }}
383
                     床号:{{ main_collection.number.number }}
5723
         }
5731
         }
5724
         return age
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
   created() {
5825
   created() {