Merge branch 'develop' of github.com:Frappet/bma-ehr-frontend into develop

* 'develop' of github.com:Frappet/bma-ehr-frontend:
  แก้เเสดง ชื่อ
This commit is contained in:
Warunee Tamkoo 2024-06-20 18:41:55 +07:00
commit 242af9444d

View file

@ -378,7 +378,10 @@ onMounted(() => {
</q-icon>
</q-td>
<q-td v-for="col in props.cols" :key="col.id">
<div>{{ col.value ? col.value : "-" }}</div>
<div v-if="col.name == 'fullName'">
{{ props.row.prefix ? props.row.prefix:'' }}{{ props.row.firstName ? props.row.firstName:'' }} {{ props.row.lastName ? props.row.lastName:'' }}
</div>
<div v-else>{{ col.value ? col.value : "-" }}</div>
</q-td>
</q-tr>
</template>