รายชื่อลูกจ้างชั่วคราว
This commit is contained in:
parent
53c14dbc6d
commit
36289d0d74
1 changed files with 27 additions and 12 deletions
|
|
@ -93,21 +93,21 @@ const columns = ref<QTableProps["columns"]>([
|
|||
{
|
||||
name: "draftOrganizationOrganization",
|
||||
align: "left",
|
||||
label: "หน่วยงานที่รับการบรรจุ",
|
||||
label: "ตำแหน่ง/หน่วยงานที่รับการบรรจุ",
|
||||
sortable: false,
|
||||
field: "draftOrganizationOrganization",
|
||||
headerStyle: "font-size: 14px",
|
||||
style: "font-size: 14px",
|
||||
},
|
||||
{
|
||||
name: "draftPositionEmployee",
|
||||
align: "left",
|
||||
label: "หน่วยงานที่บรรจุ",
|
||||
sortable: false,
|
||||
field: "draftPositionEmployee",
|
||||
headerStyle: "font-size: 14px; min-width: 200px",
|
||||
style: "font-size: 14px; ",
|
||||
},
|
||||
// {
|
||||
// name: "draftPositionEmployee",
|
||||
// align: "left",
|
||||
// label: "ตำแหน่งที่บรรจุ",
|
||||
// sortable: false,
|
||||
// field: "draftPositionEmployee",
|
||||
// headerStyle: "font-size: 14px; min-width: 200px",
|
||||
// style: "font-size: 14px; ",
|
||||
// },
|
||||
|
||||
{
|
||||
name: "govAge",
|
||||
|
|
@ -193,7 +193,7 @@ const visibleColumns = ref<String[]>([
|
|||
"citizenId",
|
||||
"fullname",
|
||||
"draftOrganizationOrganization",
|
||||
"draftPositionEmployee",
|
||||
// "draftPositionEmployee",
|
||||
"govAge",
|
||||
"dateEmployment",
|
||||
"age",
|
||||
|
|
@ -465,8 +465,23 @@ onMounted(async () => {
|
|||
"
|
||||
>
|
||||
<div class="col-4">
|
||||
<div>
|
||||
{{
|
||||
props.row.position !== null ? props.row.position : "-"
|
||||
}}
|
||||
{{
|
||||
props.row.posTypeShortName !== null
|
||||
? `(${props.row.posTypeShortName}`
|
||||
: ""
|
||||
}}
|
||||
{{
|
||||
props.row.posLevel !== null
|
||||
? `${props.row.posLevel})`
|
||||
: ""
|
||||
}}
|
||||
</div>
|
||||
<div class="text-weight-medium">
|
||||
{{ props.row.root !== null ? props.row.root : "-" }}
|
||||
{{ props.row.root !== null ? props.row.root : "" }}
|
||||
{{
|
||||
props.row.rootShortName !== null
|
||||
? `(${props.row.rootShortName})`
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue