Merge branch 'develop' into devTee

This commit is contained in:
setthawutttty 2024-11-05 15:13:51 +07:00
commit f8f7fb1d96
3 changed files with 11 additions and 4 deletions

View file

@ -10,7 +10,7 @@ import { useCounterMixin } from "@/stores/mixin";
import type {
DataOption,
DataPerson,
PersonData
PersonData,
} from "@/modules/15_development/interface/index/Main";
import type { FormsSholarship } from "@/modules/15_development/interface/request/Scholarship";
import type { DataSholarship } from "@/modules/15_development/interface/response/Scholarship";
@ -621,7 +621,7 @@ onMounted(() => {
<div class="col-8 text-weight-medium">
{{ dataPerson.position }}
</div>
<div class="col-4 text-grey">ประเภทตำแหน</div>
<div class="col-4 text-grey">ตำแหนประเภท</div>
<div class="col-8 text-weight-medium">
{{ dataPerson.type }}
</div>
@ -1149,7 +1149,7 @@ onMounted(() => {
<div class="col-8 text-weight-medium">
{{ dataGuarantor.position }}
</div>
<div class="col-4 text-grey">ประเภท</div>
<div class="col-4 text-grey">ตำแหนประเภท</div>
<div class="col-8 text-weight-medium">
{{ dataGuarantor.type }}
</div>

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>