show year of scholarship list
This commit is contained in:
parent
8d7f0a2567
commit
bb549016fe
1 changed files with 13 additions and 0 deletions
|
|
@ -24,6 +24,18 @@ const { showLoader, hideLoader, messageError } = useCounterMixin();
|
||||||
/** หัวตาราง */
|
/** หัวตาราง */
|
||||||
const rows = ref<ListSholarship[]>([]);
|
const rows = ref<ListSholarship[]>([]);
|
||||||
const columns = ref<QTableProps["columns"]>([
|
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",
|
name: "citizenId",
|
||||||
align: "left",
|
align: "left",
|
||||||
|
|
@ -81,6 +93,7 @@ const columns = ref<QTableProps["columns"]>([
|
||||||
},
|
},
|
||||||
]);
|
]);
|
||||||
const visibleColumns = ref<string[]>([
|
const visibleColumns = ref<string[]>([
|
||||||
|
"year",
|
||||||
"citizenId",
|
"citizenId",
|
||||||
"fullName",
|
"fullName",
|
||||||
"position",
|
"position",
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue