see999 4 years ago
parent
commit
60fcb7d33e

+ 7 - 7
src/xt_pages/dialysis/batch_print/batch_print_order_twentyEight.vue View File

246
                         <tbody>
246
                         <tbody>
247
                         <tr>
247
                         <tr>
248
                             <td width="80">活动性出血:</td>
248
                             <td width="80">活动性出血:</td>
249
-                            <td width="400">
249
+                            <td width="420">
250
                             <div>
250
                             <div>
251
                                
251
                                
252
                                <label-box :isChecked="record.assessment_before_dislysis.is_hemorrhage == 2 ? true : false" showValue="无"></label-box>
252
                                <label-box :isChecked="record.assessment_before_dislysis.is_hemorrhage == 2 ? true : false" showValue="无"></label-box>
634
                     </tr>
634
                     </tr>
635
 
635
 
636
                     <tr v-for="(advice, advice_index) in record.advices" :key="advice_index">
636
                     <tr v-for="(advice, advice_index) in record.advices" :key="advice_index">
637
-                        <td height="40px">
637
+                        <td height="30px">
638
                             <span v-if="advice[0].start_time">
638
                             <span v-if="advice[0].start_time">
639
                                 {{ getTime(advice[0].start_time, "{h}:{i}") }}
639
                                 {{ getTime(advice[0].start_time, "{h}:{i}") }}
640
                             </span>
640
                             </span>
662
                                 <!-- </span> -->
662
                                 <!-- </span> -->
663
                             </span>
663
                             </span>
664
                         </td>
664
                         </td>
665
-                        <td height="40px">
665
+                        <td height="30px">
666
                             <span v-if="setAdminUserES(advice[0], 'advice_doctor') == ''">
666
                             <span v-if="setAdminUserES(advice[0], 'advice_doctor') == ''">
667
                                 {{getAdminUser(advice[0], 'advice_doctor')}}
667
                                 {{getAdminUser(advice[0], 'advice_doctor')}}
668
                             </span>
668
                             </span>
670
                                 <img style="height:30px;" :src="setAdminUserES(advice[0], 'advice_doctor')" alt srcset />
670
                                 <img style="height:30px;" :src="setAdminUserES(advice[0], 'advice_doctor')" alt srcset />
671
                             </span>
671
                             </span>
672
                         </td>
672
                         </td>
673
-                        <td height="40px">
673
+                        <td height="30px">
674
                             <span v-if="setAdminUserES(advice[0], 'execution_staff') == ''">
674
                             <span v-if="setAdminUserES(advice[0], 'execution_staff') == ''">
675
                                 {{getAdminUser(advice[0], 'execution_staff')}}
675
                                 {{getAdminUser(advice[0], 'execution_staff')}}
676
                             </span>
676
                             </span>
685
                              <img class="es-img" :src="setAdminUserES(advice[0], 'checker')" alt="" srcset="" style="height: 30px;" />
685
                              <img class="es-img" :src="setAdminUserES(advice[0], 'checker')" alt="" srcset="" style="height: 30px;" />
686
                           </span>
686
                           </span>
687
                         </td>
687
                         </td>
688
-                        <td height="40px">
688
+                        <td height="30px">
689
                             <span v-if="advice[0].execution_time">{{ getTime(advice[0].execution_time, "{h}:{i}") }}</span>
689
                             <span v-if="advice[0].execution_time">{{ getTime(advice[0].execution_time, "{h}:{i}") }}</span>
690
                         </td>
690
                         </td>
691
                     </tr>
691
                     </tr>
1078
             var dlegh = 0
1078
             var dlegh = 0
1079
             if (
1079
             if (
1080
               this.records[recordIndex].monitor_records &&
1080
               this.records[recordIndex].monitor_records &&
1081
-              this.records[recordIndex].monitor_records.length < 8
1081
+              this.records[recordIndex].monitor_records.length < 12
1082
             ) {
1082
             ) {
1083
-              dlegh = 8 - this.records[recordIndex].monitor_records.length
1083
+              dlegh = 12 - this.records[recordIndex].monitor_records.length
1084
             } else {
1084
             } else {
1085
               dlegh = 0
1085
               dlegh = 0
1086
             }
1086
             }

+ 2 - 2
src/xt_pages/dialysis/template/DialysisPrintOrderTwentyEight.vue View File

2010
             if (this.org_template_info.org_id == 9535) {
2010
             if (this.org_template_info.org_id == 9535) {
2011
               this.isShowZero = true
2011
               this.isShowZero = true
2012
             }
2012
             }
2013
-            if (this.monitors.length < 9) {
2014
-              var nl = 9 - this.monitors.length
2013
+            if (this.monitors.length < 12) {
2014
+              var nl = 12 - this.monitors.length
2015
               for (let index = 0; index < nl; index++) {
2015
               for (let index = 0; index < nl; index++) {
2016
                 this.monitors.push([])
2016
                 this.monitors.push([])
2017
               }
2017
               }

+ 0 - 1
src/xt_pages/outpatientCharges/newTreatTemplate/printOne.vue View File

262
             this.getPage()
262
             this.getPage()
263
         },
263
         },
264
         deep: true,
264
         deep: true,
265
-        immediate:true
266
       }
265
       }
267
     }
266
     }
268
 
267