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

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 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",
align: "left",
label: "รอบการประเมิน ",
label: "รอบการประเมิน",
sortable: true,
field: "durationKPI",
headerStyle: "font-size: 14px",
@ -82,6 +92,7 @@ const columns = ref<QTableProps["columns"]>([
},
]);
const visibleColumns = ref<string[]>([
"year",
"durationKPI",
"startDate",
"endDate",