This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2025-03-24 09:08:00 +07:00
parent 77381dbd09
commit 924ca29cb1
6 changed files with 51 additions and 12 deletions

View file

@ -61,9 +61,11 @@ const columns = ref<QTableProps["columns"]>([
label: "ลำดับ",
sortable: false,
field: (row) =>
(queryParams.page - 1) * queryParams.pageSize +
rows.value.indexOf(row) +
1,
(
(queryParams.page - 1) * queryParams.pageSize +
rows.value.indexOf(row) +
1
).toLocaleString(),
headerStyle: "font-size: 14px",
style: "font-size: 14px",
},