แก้รักษาการ

This commit is contained in:
Warunee Tamkoo 2024-11-05 15:11:36 +07:00
parent 6c0f4530ab
commit aad08aba0e
3 changed files with 11 additions and 4 deletions

View file

@ -13,6 +13,7 @@ interface DataTree {
}
interface PosMaster {
posNo: string;
fullNameCurrentHolder: string;
orgLevel: number;
orgTreeId: string;

View file

@ -364,7 +364,13 @@ onMounted(() => {
@click.stop="updateSelected(col)"
>
<q-item-section>
{{ col.fullNameCurrentHolder }}
{{
`${col.posNo} ${
col.fullNameCurrentHolder
? " (" + col.fullNameCurrentHolder + ")"
: ""
}`
}}
</q-item-section>
</q-item>
</q-list>