XMLWAN 2 年 前
コミット
ddc5a1d916

+ 1 - 1
src/xt_pages/dialysis/details/index.vue ファイルの表示

@@ -334,7 +334,7 @@
334 334
                 </div>
335 335
                 <div class="printCell" style="display:flex;justify-content: space-around;">
336 336
                   <span style="display: block;width: 50%;">处方脱水量:{{ main_collection.prescription.target_ultrafiltration }}
337
-                    <span v-if="this.$store.getters.xt_user.org.id == 10278">ml</span> 
337
+                    <span v-if="$store.getters.xt_user.org.id == 10278">ml</span> 
338 338
                     <span v-else>L</span>
339 339
                   </span>
340 340
                   <span style="display: block;width: 50%;">

+ 2 - 2
src/xt_pages/outpatientDoctorStation/doctorDesk.vue ファイルの表示

@@ -437,8 +437,8 @@
437 437
                 
438 438
                 </div>
439 439
                 <div class="printCell" style="display:flex;justify-content: space-around;">
440
-                  <span style="display: block;width: 50%;">处方脱水量:
441
-                    <span v-if="this.$store.getters.xt_user.org.id == 10278">ml</span> 
440
+                  <span style="display: block;width: 50%;">处方脱水量:{{ main_collection.prescription.target_ultrafiltration }}
441
+                    <span v-if="$store.getters.xt_user.org.id == 10278">ml</span> 
442 442
                     <span v-else>L</span>
443 443
                     </span>
444 444
                   <span style="display: block;width: 50%;">

+ 3 - 3
src/xt_pages/outpatientTool/components/detailStatistics.vue ファイルの表示

@@ -465,7 +465,7 @@ export default {
465 465
           fund_pay_sumamt += this.list[i].orders[j].fund_pay_sumamt;
466 466
         }
467 467
       }
468
-      return fund_pay_sumamt;
468
+      return fund_pay_sumamt.toFixed(2);
469 469
     },
470 470
     getHifesPay() {
471 471
       var hifes_pay = 0;
@@ -474,7 +474,7 @@ export default {
474 474
           hifes_pay += this.list[i].orders[j].hifes_pay;
475 475
         }
476 476
       }
477
-      return hifes_pay;
477
+      return hifes_pay.toFixed(2);
478 478
     },
479 479
     getMafPay() {
480 480
       var maf_pay = 0;
@@ -483,7 +483,7 @@ export default {
483 483
           maf_pay += this.list[i].orders[j].maf_pay;
484 484
         }
485 485
       }
486
-      return maf_pay;
486
+      return maf_pay.toFixed(2);
487 487
     },
488 488
     toPrint() {
489 489
       this.$router.push({