show year of scholarship list

This commit is contained in:
Warunee Tamkoo 2024-05-02 14:55:45 +07:00
parent 8d7f0a2567
commit bb549016fe

View file

@ -24,6 +24,18 @@ const { showLoader, hideLoader, messageError } = useCounterMixin();
/** หัวตาราง */
const rows = ref<ListSholarship[]>([]);
const columns = ref<QTableProps["columns"]>([
{
name: "year",
align: "left",
label: "ปีงบประมาณ ",
sortable: true,
field: "year",
headerStyle: "font-size: 14px",
style: "font-size: 14px",
format(val) {
return val + 543;
},
},
{
name: "citizenId",
align: "left",
@ -81,6 +93,7 @@ const columns = ref<QTableProps["columns"]>([
},
]);
const visibleColumns = ref<string[]>([
"year",
"citizenId",
"fullName",
"position",