XMLWAN 2 years ago
parent
commit
ddc5a1d916

+ 1 - 1
src/xt_pages/dialysis/details/index.vue View File

334
                 </div>
334
                 </div>
335
                 <div class="printCell" style="display:flex;justify-content: space-around;">
335
                 <div class="printCell" style="display:flex;justify-content: space-around;">
336
                   <span style="display: block;width: 50%;">处方脱水量:{{ main_collection.prescription.target_ultrafiltration }}
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
                     <span v-else>L</span>
338
                     <span v-else>L</span>
339
                   </span>
339
                   </span>
340
                   <span style="display: block;width: 50%;">
340
                   <span style="display: block;width: 50%;">

+ 2 - 2
src/xt_pages/outpatientDoctorStation/doctorDesk.vue View File

437
                 
437
                 
438
                 </div>
438
                 </div>
439
                 <div class="printCell" style="display:flex;justify-content: space-around;">
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
                     <span v-else>L</span>
442
                     <span v-else>L</span>
443
                     </span>
443
                     </span>
444
                   <span style="display: block;width: 50%;">
444
                   <span style="display: block;width: 50%;">

+ 3 - 3
src/xt_pages/outpatientTool/components/detailStatistics.vue View File

465
           fund_pay_sumamt += this.list[i].orders[j].fund_pay_sumamt;
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
     getHifesPay() {
470
     getHifesPay() {
471
       var hifes_pay = 0;
471
       var hifes_pay = 0;
474
           hifes_pay += this.list[i].orders[j].hifes_pay;
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
     getMafPay() {
479
     getMafPay() {
480
       var maf_pay = 0;
480
       var maf_pay = 0;
483
           maf_pay += this.list[i].orders[j].maf_pay;
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
     toPrint() {
488
     toPrint() {
489
       this.$router.push({
489
       this.$router.push({