บรรจุแต่งตั้ง
This commit is contained in:
parent
dbb9e5719b
commit
184e1a8815
12 changed files with 552 additions and 94 deletions
|
|
@ -48,6 +48,7 @@ const visibleColumns2 = ref<string[]>([
|
|||
"no",
|
||||
"fullname",
|
||||
"posType",
|
||||
"positionNumberOld",
|
||||
"organizationPositionOld",
|
||||
"organization",
|
||||
"status",
|
||||
|
|
@ -75,10 +76,19 @@ const columns2 = ref<QTableProps["columns"]>([
|
|||
return `${row.prefix}${row.firstName} ${row.lastName}`;
|
||||
},
|
||||
},
|
||||
{
|
||||
name: "positionNumberOld",
|
||||
align: "left",
|
||||
label: "เลขที่ตำแหน่งเดิม",
|
||||
sortable: true,
|
||||
field: "positionNumberOld",
|
||||
headerStyle: "font-size: 14px",
|
||||
style: "font-size: 14px",
|
||||
},
|
||||
{
|
||||
name: "posType",
|
||||
align: "left",
|
||||
label: "ประเภทตำแหน่ง",
|
||||
label: "ตำแหน่งประเภท",
|
||||
sortable: true,
|
||||
field: "posType",
|
||||
headerStyle: "font-size: 14px",
|
||||
|
|
@ -87,6 +97,7 @@ const columns2 = ref<QTableProps["columns"]>([
|
|||
return row.positionTypeOld + " (" + row.positionLevelOld + ")";
|
||||
},
|
||||
},
|
||||
|
||||
{
|
||||
name: "organizationPositionOld",
|
||||
align: "left",
|
||||
|
|
@ -94,7 +105,9 @@ const columns2 = ref<QTableProps["columns"]>([
|
|||
sortable: true,
|
||||
field: "organizationPositionOld",
|
||||
format(val, row) {
|
||||
return row.organizationPositionOld.replace(/\n/g, " ");
|
||||
return row.organizationPositionOld
|
||||
? `${row.organizationPositionOld.replace(/\n/g, " ")}`
|
||||
: "-";
|
||||
},
|
||||
headerStyle: "font-size: 14px",
|
||||
style: "font-size: 14px",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue