Files
FE_CPONE/test/vuex/one-result-print-adm/components/oneInfo.vue
2026-04-27 10:13:31 +07:00

29 lines
595 B
Vue

<template>
<div style="height:30px;
position:fixed;bottom:0px;
left:50%;
color:white;
font-size:16px;
padding-bottom:5px;
font-weight:bold;
z-index:999;
margin-left:-150px;width:300px;">
Pasien hari ini : {{ hari_ini }} , menyusul {{ total_susulan}}
</div>
</template>
<script>
module.exports = {
computed: {
hari_ini() {
return this.$store.state.re_patient.total_day
},
total_susulan() {
return this.$store.state.re_patient.total_susulan
}
},
methods: {
}
}
</script>