ย้ายไอคอน

This commit is contained in:
STW_TTTY\stwtt 2024-07-24 16:37:04 +07:00
parent da4e99f767
commit c3c11afd1f
58 changed files with 1115 additions and 1056 deletions

View file

@ -67,6 +67,12 @@ const dataModal = ref<any>([]);
* อม Tabla
*/
const columns = ref<QTableProps["columns"]>([
{
name: "action",
align: "left",
label: "",
field: "",
},
{
name: "no",
align: "left",
@ -210,14 +216,10 @@ const columns = ref<QTableProps["columns"]>([
sort: (a: string, b: string) =>
a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }),
},
{
name: "action",
align: "left",
label: "",
field: "",
},
]);
const visibleColumns = ref<String[]>([
"action",
"no",
"status",
"citizenId",
@ -234,7 +236,7 @@ const visibleColumns = ref<String[]>([
"datepay",
"typepay",
"address",
"action",
]);
const filterRef = ref<QInput>();
const filter = ref<string>("");