see999 il y a 3 ans
Parent
révision
e0024c3c58
1 fichiers modifiés avec 10 ajouts et 5 suppressions
  1. 10 5
      src/xt_pages/dialysis/template/DialysisPrintOrderFortyOne.vue

+ 10 - 5
src/xt_pages/dialysis/template/DialysisPrintOrderFortyOne.vue Voir le fichier

@@ -165,7 +165,7 @@
165 165
                   <div class="inline_block" style="margin-left:90px;">
166 166
                     体重增加:
167 167
                     <div class="under_line" style="width: 50px;text-align: center">
168
-                      {{ predialysis.dry_weight ? predialysis.dry_weight : "/" }}
168
+                      {{ predialysis.weight_before > 0 && lastafterdialysis.weight_after > 0 ? parseFloat(predialysis.weight_before - lastafterdialysis.weight_after).toFixed(2): "/" }}
169 169
                     </div>
170 170
                     kg
171 171
                   </div>
@@ -574,7 +574,7 @@
574 574
                   <tbody>
575 575
                     <tr>
576 576
                       <td colspan="9" style="letter-spacing:5px;text-align:center;font-weight:520;font-size:16px;padding: 6px 8px;line-height: 30px;">
577
-                        测记录
577
+                        测记录
578 578
                       </td>
579 579
                     </tr>
580 580
                     <tr>
@@ -611,12 +611,17 @@
611 611
                       <td style="line-height:16px;padding:0px;">
612 612
                         <div style="min-height:35px;line-height:35px; overflow:hidden;">
613 613
                           <span v-if="getTime(monitor.operate_time, '{h}:{i}')" style="word-break: break-all;margin:0;line-height:16px;-webkit-line-clamp:3;overflow:visible;display:inline-block;vertical-align:middle;height:auto;">
614
-                            <template v-if="(dialysisOrder && monitor.operate_time == dialysisOrder.start_time)">【开始透析】</template>
614
+                            <template v-if="(dialysisOrder && monitor.operate_time == dialysisOrder.start_time)">【开始透析】引血100ml/min</template>
615 615
                             {{ monitor.end }} {{ monitor.symptom }} &nbsp;{{ monitor.dispose }} &nbsp;{{ monitor.result }}
616 616
                           </span>
617 617
                         </div>
618 618
                       </td>
619 619
                     </tr>
620
+                    <tr>
621
+                      <td colspan="9" style="line-height:25px;text-align:left;">
622
+                        医师记录:{{ summary.special_record ? summary.special_record : '' }}
623
+                      </td>
624
+                    </tr>
620 625
                   </tbody>
621 626
                 </table>
622 627
               </td>
@@ -1191,11 +1196,11 @@ export default {
1191 1196
           this.monitors[index].end = ''
1192 1197
           if (Object.keys(monitor).length > 0 && index > 1) {
1193 1198
             if (this.dialysisOrder && monitor.operate_time == this.dialysisOrder.end_time) {
1194
-              this.monitors[index].end = '【结束透析】'
1199
+              this.monitors[index].end = '【结束透析】回血100ml/min'
1195 1200
               tempmonitorflag = false
1196 1201
             }
1197 1202
             if (tempmonitorflag && index == this.monitors.length - 1) {
1198
-              this.monitors[index].end = '【结束透析】'
1203
+              this.monitors[index].end = '【结束透析】回血100ml/min'
1199 1204
             }
1200 1205
           }
1201 1206
         }