Просмотр исходного кода

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

csx 3 лет назад
Родитель
Сommit
9ccae5871d

+ 10 - 5
src/xt_pages/dialysis/template/DialysisPrintOrderFortyOne.vue Просмотреть файл

165
                   <div class="inline_block" style="margin-left:90px;">
165
                   <div class="inline_block" style="margin-left:90px;">
166
                     体重增加:
166
                     体重增加:
167
                     <div class="under_line" style="width: 50px;text-align: center">
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
                     </div>
169
                     </div>
170
                     kg
170
                     kg
171
                   </div>
171
                   </div>
574
                   <tbody>
574
                   <tbody>
575
                     <tr>
575
                     <tr>
576
                       <td colspan="9" style="letter-spacing:5px;text-align:center;font-weight:520;font-size:16px;padding: 6px 8px;line-height: 30px;">
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
                       </td>
578
                       </td>
579
                     </tr>
579
                     </tr>
580
                     <tr>
580
                     <tr>
611
                       <td style="line-height:16px;padding:0px;">
611
                       <td style="line-height:16px;padding:0px;">
612
                         <div style="min-height:35px;line-height:35px; overflow:hidden;">
612
                         <div style="min-height:35px;line-height:35px; overflow:hidden;">
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;">
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
                             {{ monitor.end }} {{ monitor.symptom }} &nbsp;{{ monitor.dispose }} &nbsp;{{ monitor.result }}
615
                             {{ monitor.end }} {{ monitor.symptom }} &nbsp;{{ monitor.dispose }} &nbsp;{{ monitor.result }}
616
                           </span>
616
                           </span>
617
                         </div>
617
                         </div>
618
                       </td>
618
                       </td>
619
                     </tr>
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
                   </tbody>
625
                   </tbody>
621
                 </table>
626
                 </table>
622
               </td>
627
               </td>
1191
           this.monitors[index].end = ''
1196
           this.monitors[index].end = ''
1192
           if (Object.keys(monitor).length > 0 && index > 1) {
1197
           if (Object.keys(monitor).length > 0 && index > 1) {
1193
             if (this.dialysisOrder && monitor.operate_time == this.dialysisOrder.end_time) {
1198
             if (this.dialysisOrder && monitor.operate_time == this.dialysisOrder.end_time) {
1194
-              this.monitors[index].end = '【结束透析】'
1199
+              this.monitors[index].end = '【结束透析】回血100ml/min'
1195
               tempmonitorflag = false
1200
               tempmonitorflag = false
1196
             }
1201
             }
1197
             if (tempmonitorflag && index == this.monitors.length - 1) {
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
         }

+ 22 - 1
src/xt_pages/outpatientCharges/newStatementPrintTwo.vue Просмотреть файл

389
                       }
389
                       }
390
                     })
390
                     })
391
                     that.num = num
391
                     that.num = num
392
+                    let newTotal = 0
393
+                    for (var i = that.info.transBody.outputlist2.length - 1; i >= 0; i--) {
394
+                      if(that.info.transBody.outputlist2[i].aka111 == '07') {
395
+                        console.log('0707007')
396
+                        newTotal += that.info.transBody.outputlist2[i].bka058
397
+                        that.info.transBody.outputlist2.splice(i, 1);
398
+                      }
399
+                      if(that.info.transBody.outputlist2[i].aka111 == '19'){
400
+                        console.log('191919')
401
+                        newTotal += that.info.transBody.outputlist2[i].bka058
402
+                        that.info.transBody.outputlist2.splice(i, 1);
403
+                      }
404
+                    }
405
+                    console.log(1111111111111)
406
+                    let aka111obj = {
407
+                      aka111:'99',
408
+                      bka058:newTotal
409
+                    }
410
+                    console.log('aka111obj',aka111obj)
411
+                    that.info.transBody.outputlist2.push(aka111obj)
412
+                    console.log('that.info.transBody.outputlist2',that.info.transBody.outputlist2)
392
                     console.log('this.num222',that.num)
413
                     console.log('this.num222',that.num)
393
-
414
+                    
394
                   }
415
                   }
395
                 }
416
                 }
396
               })
417
               })

+ 3 - 0
src/xt_pages/outpatientCharges/newTreatTemplate/printTwo.vue Просмотреть файл

398
           case '26':
398
           case '26':
399
             return '挂号费'
399
             return '挂号费'
400
             break
400
             break
401
+          case '99':
402
+            return '诊疗费'
403
+            break
401
 
404
 
402
         }
405
         }
403
 
406