From c60334e962e1d050c371b830f9ef440f9ad8cbd6 Mon Sep 17 00:00:00 2001 From: waruneeauy Date: Fri, 26 Apr 2024 15:10:25 +0700 Subject: [PATCH] =?UTF-8?q?=E0=B9=81=E0=B8=AA=E0=B8=94=E0=B8=87=E0=B8=9B?= =?UTF-8?q?=E0=B8=B5=E0=B8=87=E0=B8=9A=E0=B8=9B=E0=B8=A3=E0=B8=B0=E0=B8=A1?= =?UTF-8?q?=E0=B8=B2=E0=B8=93=E0=B9=83=E0=B8=99=E0=B8=AB=E0=B8=99=E0=B9=89?= =?UTF-8?q?=E0=B8=B2=E0=B8=A3=E0=B8=AD=E0=B8=9A=E0=B8=81=E0=B8=B2=E0=B8=A3?= =?UTF-8?q?=E0=B8=9B=E0=B8=A3=E0=B8=B0=E0=B9=80=E0=B8=A1=E0=B8=B4=E0=B8=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/modules/14_KPI/views/round.vue | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/src/modules/14_KPI/views/round.vue b/src/modules/14_KPI/views/round.vue index 00b7ee919..7388825a4 100644 --- a/src/modules/14_KPI/views/round.vue +++ b/src/modules/14_KPI/views/round.vue @@ -39,10 +39,20 @@ const { /** หัวตาราง */ const rows = ref([]); const columns = ref([ + { + 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([ }, ]); const visibleColumns = ref([ + "year", "durationKPI", "startDate", "endDate",