แก้ รายละเอียดการประเมินบุคคล

This commit is contained in:
setthawutttty 2024-01-24 09:50:20 +07:00
parent 5f0d1eb6cc
commit 0ebce96c89
3 changed files with 51 additions and 10 deletions

View file

@ -76,6 +76,28 @@ const columns = ref<QTableProps["columns"]>([
sort: (a: string, b: string) =>
a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }),
},
{
name: "tittle",
align: "left",
label: "หัวข้อการประชุม",
sortable: true,
field: "tittle",
headerStyle: "font-size: 14px",
style: "font-size: 14px",
sort: (a: string, b: string) =>
a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }),
},
{
name: "round",
align: "left",
label: "ครั้งที่",
sortable: true,
field: "round",
headerStyle: "font-size: 14px",
style: "font-size: 14px",
sort: (a: string, b: string) =>
a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }),
},
{
name: "result",
align: "left",