แสดงปีงบประมาณในหน้ารอบการประเมิน

This commit is contained in:
Warunee Tamkoo 2024-04-26 15:10:25 +07:00
parent d43748e450
commit c60334e962

View file

@ -39,10 +39,20 @@ const {
/** หัวตาราง */ /** หัวตาราง */
const rows = ref<ResRound[]>([]); const rows = ref<ResRound[]>([]);
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) => val + 543,
},
{ {
name: "durationKPI", name: "durationKPI",
align: "left", align: "left",
label: "รอบการประเมิน ", label: "รอบการประเมิน",
sortable: true, sortable: true,
field: "durationKPI", field: "durationKPI",
headerStyle: "font-size: 14px", headerStyle: "font-size: 14px",
@ -82,6 +92,7 @@ const columns = ref<QTableProps["columns"]>([
}, },
]); ]);
const visibleColumns = ref<string[]>([ const visibleColumns = ref<string[]>([
"year",
"durationKPI", "durationKPI",
"startDate", "startDate",
"endDate", "endDate",