huangyw 3 yıl önce
ebeveyn
işleme
3a2b2c03df

+ 1 - 1
src/xt_pages/dialysis/template/DialysisPrintOrderFortySix.vue Dosyayı Görüntüle

@@ -671,7 +671,7 @@
671 671
                       透析时间:
672 672
                       <div
673 673
                         class="under_line"
674
-                        style="width: 30px; text-align: center"
674
+                        style="width: 20px; text-align: center"
675 675
                       >
676 676
                         {{
677 677
                           prescription.dialysis_duration_hour

BIN
src/xt_pages/outpatientDoctorStation/assets/shuiyin.jpg Dosyayı Görüntüle


+ 2 - 2
src/xt_pages/outpatientDoctorStation/print.vue Dosyayı Görüntüle

@@ -14,7 +14,7 @@
14 14
 
15 15
     <div class="dialysisPage" style="padding-top: 40px">
16 16
       <div v-if="org_id != 10138 && org_id != 10278 && org_id != 10243 && org_id != 9675">
17
-        <printOne
17
+        <printSix
18 18
           v-if="org_id != 10088 && org_id != 10215"
19 19
           v-bind:childResponse="childResponse"
20 20
           :advicePrint="advicePrint"
@@ -25,7 +25,7 @@
25 25
           :patient_id="patient_id"
26 26
           :record_date="record_date"
27 27
           :prescription_id="prescription_id"
28
-        ></printOne>
28
+        ></printSix>
29 29
         <printFour
30 30
           v-if="org_id == 10088"
31 31
           v-bind:childResponse="childResponse"

+ 15 - 8
src/xt_pages/outpatientDoctorStation/template/printSix.vue Dosyayı Görüntüle

@@ -14,21 +14,21 @@
14 14
         </div>
15 15
         <div
16 16
           class="printTitle"
17
-          v-if="
18
-            prescriptions[0].med_type != '1111' &&
19
-            prescriptions[0].med_type != '1112'
20
-          "
21 17
         >
22
-          {{ orgname }}处方笺
18
+        <div style="line-height: 60px;font-size: 30px;">{{ orgname }}处方笺</div>
19
+          
20
+          <img class="logo" src="../assets/shuiyin.jpg" alt="加载失败..">
23 21
         </div>
24 22
 
23
+        
24
+
25 25
         <div class="infoTitle" style="border-bottom:1px solid #000;">
26 26
           <p>科室:{{ item.info ? getDepart(item.info.departments) : "" }}</p>
27 27
           <p>费别:</p>
28 28
           <p>门诊号:{{ hisPatient.number ? hisPatient.number : "" }}</p>
29 29
           <p>
30
-            <!-- <span>年</span> <span>月</span> <span>日</span> -->
31
-            {{getTime(item.ctime)?getTime(item.ctime):""}}
30
+            <span>{{record_date.split("-")[0]}}年</span> <span>{{record_date.split("-")[1]}}月</span> <span>{{record_date.split("-")[2]}}日</span>
31
+            <!-- {{getTime(item.ctime)?getTime(item.ctime):""}} -->
32 32
           </p>
33 33
         </div>
34 34
 
@@ -40,7 +40,7 @@
40 40
             <span v-if="item.patient.gender == 2">女</span>
41 41
           </p>
42 42
           <p>年龄:{{ getAge(item.patient) ? getAge(item.patient) : "" }}岁</p>
43
-          <p>电话:</p>
43
+          <p>电话:{{item.patient.phone}}</p>
44 44
         </div>
45 45
         <div class="infoTitle" style="border-bottom:1px solid #000;">
46 46
           <p>地址:{{ item.patient.home_address }}</p>
@@ -264,6 +264,7 @@ export default {
264 264
     },
265 265
     getTime(value, temp) {
266 266
       if (value != undefined) {
267
+
267 268
         return uParseTime(value, temp);
268 269
       }
269 270
       return "";
@@ -448,6 +449,10 @@ export default {
448 449
   font-size: 22px;
449 450
   text-align: center;
450 451
   font-weight: bold;
452
+  display: flex;
453
+    position: relative;
454
+    left: 50%;
455
+    transform: translateX(-50px);
451 456
 }
452 457
 .infoTitle_thin {
453 458
   display: flex;
@@ -535,4 +540,6 @@ export default {
535 540
 .actionBar p {
536 541
   width: 150px;
537 542
 }
543
+
544
+.logo{}
538 545
 </style>