แก้ bug เครื่องราช, เพิ่ม validate

This commit is contained in:
Warunee Tamkoo 2023-09-20 15:33:39 +07:00
parent fe672a5aff
commit 627df1a30a
16 changed files with 484 additions and 1167 deletions

View file

@ -49,8 +49,6 @@ const columns = ref<QTableProps["columns"]>([
field: "period_year",
headerStyle: "font-size: 14px",
style: "font-size: 14px",
sort: (a: string, b: string) =>
a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }),
},
{
name: "period_start",
@ -78,12 +76,10 @@ const columns = ref<QTableProps["columns"]>([
name: "statusRoyal",
align: "center",
label: "สถานะราชกิจจานุเบกษา",
sortable: true,
sortable: false,
field: "statusRoyal",
headerStyle: "font-size: 14px",
style: "font-size: 14px",
sort: (a: string, b: string) =>
a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }),
},
]);