ปีงบประมาณ
This commit is contained in:
parent
7052a622d6
commit
40a2272881
2 changed files with 13 additions and 1 deletions
|
|
@ -57,6 +57,7 @@ const visibleColumns = ref<string[]>([
|
|||
"title",
|
||||
"fullname",
|
||||
"citizenId",
|
||||
"year",
|
||||
"caseType",
|
||||
"caseNumber",
|
||||
"description",
|
||||
|
|
@ -115,6 +116,17 @@ const columns = ref<QTableProps["columns"]>([
|
|||
sort: (a: string, b: string) =>
|
||||
a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }),
|
||||
},
|
||||
{
|
||||
name: "year",
|
||||
align: "left",
|
||||
label: "ปีงบประมาณ",
|
||||
sortable: true,
|
||||
field: "year",
|
||||
headerStyle: "font-size: 14px",
|
||||
style: "font-size: 14px",
|
||||
sort: (a: string, b: string) =>
|
||||
a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }),
|
||||
},
|
||||
{
|
||||
name: "caseType",
|
||||
align: "left",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue