Kaynağa Gözat

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

csx 3 yıl önce
ebeveyn
işleme
9ccae5871d

+ 10 - 5
src/xt_pages/dialysis/template/DialysisPrintOrderFortyOne.vue Dosyayı Görüntüle

@@ -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
         }

+ 22 - 1
src/xt_pages/outpatientCharges/newStatementPrintTwo.vue Dosyayı Görüntüle

@@ -389,8 +389,29 @@
389 389
                       }
390 390
                     })
391 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 413
                     console.log('this.num222',that.num)
393
-
414
+                    
394 415
                   }
395 416
                 }
396 417
               })

+ 3 - 0
src/xt_pages/outpatientCharges/newTreatTemplate/printTwo.vue Dosyayı Görüntüle

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