แก้เเสดง ชื่อ

This commit is contained in:
STW_TTTY\stwtt 2024-06-20 18:06:05 +07:00
parent 4b19bb2e88
commit abddb10c0c

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>