ระบบเครื่องราชฯ>>บันทึกผลการเสนอขอ (ข้อมูลคอลัมน์ตำแหน่ง)
This commit is contained in:
parent
a51c1fe518
commit
f0187c9ffe
1 changed files with 11 additions and 0 deletions
|
|
@ -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",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue