Browse Source

25 1月6日 打印单

yq1 3 months ago
parent
commit
deefd35fe5

+ 8 - 1
src/pages/main/PrintIndex.vue View File

@@ -437,6 +437,11 @@
437 437
         v-if="org_template_info.template_id == 82">
438 438
 
439 439
       </DialysisPrintOrdereightytwo>
440
+      <DialysisPrintOrdereightythree ref="childOne"
441
+        style="margin-top: 60px"
442
+        v-bind:childResponse="childResponse"
443
+        v-if="org_template_info.template_id == 83">
444
+      </DialysisPrintOrdereightythree>
440 445
     </div>
441 446
 
442 447
     <!--<side-bar :active_index="0" v-if="isShow == true"></side-bar>-->
@@ -511,6 +516,7 @@ import DialysisPrintOrderServentynine from './template/DialysisPrintOrderServent
511 516
 import DialysisPrintOrdereighty from './template/DialysisPrintOrdereighty'
512 517
 import DialysisPrintOrdereightyone from './template/DialysisPrintOrdereightyone'
513 518
 import DialysisPrintOrdereightytwo from './template/DialysisPrintOrdereightytwo'
519
+import DialysisPrintOrdereightythree from './template/DialysisPrintOrdereightythree'
514 520
 export default {
515 521
   name: "PrintIndex",
516 522
   components: {
@@ -576,7 +582,8 @@ export default {
576 582
     DialysisPrintOrderServentynine,
577 583
     DialysisPrintOrdereighty,
578 584
     DialysisPrintOrdereightyone,
579
-    DialysisPrintOrdereightytwo
585
+    DialysisPrintOrdereightytwo,
586
+    DialysisPrintOrdereightythree
580 587
   },
581 588
   data() {
582 589
     return {

+ 28 - 1
src/pages/main/template/DialysisPrintOrderSeventy.vue View File

@@ -1018,13 +1018,38 @@
1018 1018
           <tr>
1019 1019
             <td>
1020 1020
               <div class="row" style="padding: 2px 0;line-height:23px;display:flex;">
1021
-                <div class="inline_block" style="flex:1;">
1021
+                <div class="inline_block" style="flex:1;" v-if="dialysisOrder.puncture_nurse >0">
1022 1022
                   穿刺护士:
1023 1023
                   <div class="under_line" style="width: 80px;text-align: center">
1024 1024
                     <span v-if="setAdminUserES(dialysisOrder==null?0:dialysisOrder.puncture_nurse) == ''">{{getAdminUser(dialysisOrder==null?0:dialysisOrder.puncture_nurse)}}</span>
1025 1025
                     <img style="height:20px;" :src="setAdminUserES(dialysisOrder==null?0:dialysisOrder.puncture_nurse)" alt="" srcset="" v-else>
1026 1026
                   </div>
1027 1027
                 </div>
1028
+                <div class="inline_block" style="flex: 1" v-if="dialysisOrder.change_nurse > 0">
1029
+                  换药护士:
1030
+                  <div class="under_line" style="width: 90px; text-align: center">
1031
+                    <span style="height: 30px; display: inline-block" v-if="
1032
+                      setAdminUserES(
1033
+                        dialysisOrder == null
1034
+                          ? 0
1035
+                          : dialysisOrder.change_nurse
1036
+                      ) == ''
1037
+                    ">
1038
+                      {{
1039
+                        getAdminUser(
1040
+                          dialysisOrder == null
1041
+                            ? 0
1042
+                            : dialysisOrder.change_nurse
1043
+                        )
1044
+                      }}</span>
1045
+                    <img style="height:20px;" :src="setAdminUserES(
1046
+                      dialysisOrder == null
1047
+                        ? 0
1048
+                        : dialysisOrder.change_nurse
1049
+                    )
1050
+                      " alt="" srcset="" v-else />
1051
+                  </div>
1052
+                </div>
1028 1053
                 <div class="inline_block" style="flex:1;">
1029 1054
                   治疗护士:
1030 1055
                   <div class="under_line" style="width: 80px;text-align: center">
@@ -1637,6 +1662,8 @@ export default {
1637 1662
         this.users = response.data.data.users
1638 1663
         this.patientInfo = response.data.data.patientInfo
1639 1664
         this.lastWeight= response.data.data.lastWeight
1665
+        console.log('response.data.data',response.data.data);
1666
+        
1640 1667
         this.patientInfo.birth = uParseTimeOne(
1641 1668
           this.patientInfo.birthday,
1642 1669
           '{y}-{m}-{d}'

File diff suppressed because it is too large
+ 2079 - 0
src/pages/main/template/DialysisPrintOrdereightythree.vue