ระบบเครื่องราชฯ>>บันทึกผลการเสนอขอ (ข้อมูลคอลัมน์ตำแหน่ง)

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-11-11 10:05:51 +07:00
parent a51c1fe518
commit f0187c9ffe

View file

@ -85,6 +85,7 @@ const columns = ref<QTableProps["columns"]>([
sort: (a: string, b: string) =>
a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }),
},
{
name: "citizenId",
align: "left",
@ -103,6 +104,15 @@ const columns = ref<QTableProps["columns"]>([
sort: (a: string, b: string) =>
a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }),
},
{
name: "position",
align: "left",
label: "ตำแหน่ง",
field: "position",
sortable: true,
sort: (a: string, b: string) =>
a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }),
},
{
name: "employeeType",
align: "left",
@ -219,6 +229,7 @@ const visibleColumns = ref<String[]>([
"status",
"citizenId",
"name",
"position",
"type",
"dateReceive",
"date",