บรรจุ > รายชื่อผู้สอบในรอบ

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-02-21 16:05:11 +07:00
parent f560099626
commit 8779aec459

View file

@ -306,6 +306,9 @@ async function getTable() {
nodeId: data.nodeId,
posmasterId: data.posmasterId,
positionId: data.positionId,
orgTreeShortName: data.orgTreeShortName,
posPath: data.posPath,
posNumber: data.posNumber,
};
rowsAll.value.push(rowData);
});
@ -687,20 +690,16 @@ onMounted(async () => {
<div class="text-weight-medium">
{{ props.row.orgName !== null ? props.row.orgName : "-" }}
{{
props.row.organizationShortName !== null
? `(${props.row.organizationShortName})`
props.row.orgTreeShortName !== null
? `(${props.row.orgTreeShortName})`
: ""
}}
</div>
<div class="text-weight-light">
{{ props.row.posPath !== null ? props.row.posPath : "-" }}
{{
props.row.positionPath !== null
? props.row.positionPath
: "-"
}}
{{
props.row.positionNumber !== null
? `(${props.row.positionNumber})`
props.row.orgTreeShortName !== null
? `(${props.row.orgTreeShortName}${props.row.posNumber})`
: ""
}}
</div>