โครงสร้าง => fix สกจ.

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-10-17 13:57:33 +07:00
parent f251ae03d7
commit 59498c0835
2 changed files with 9 additions and 1 deletions

View file

@ -436,8 +436,15 @@ watch(
class="row col-12 text-dark items-center q-py-xs q-pl-sm rounded-borders my-list"
>
<div>
<div class="text-weight-medium">
<div
:class="
prop.node.isOfficer
? 'text-weight-medium text-blue'
: 'text-weight-medium'
"
>
{{ prop.node.orgTreeName }}
{{ prop.node.isOfficer ? "(สกจ.)" : "" }}
</div>
<div class="text-weight-light text-grey-8">
{{ prop.node.orgCode == null ? null : prop.node.orgCode }}

View file

@ -35,6 +35,7 @@ interface OrgTree {
orgTreePhoneIn: string;
orgTreeFax: string;
orgRevisionId: string;
isOfficer: boolean;
children: OrgTree[];
}