From 36e511d3fd64fef627aed19683934ef7902f0222 Mon Sep 17 00:00:00 2001 From: "STW_TTTY\\stwtt" Date: Thu, 18 Apr 2024 11:38:42 +0700 Subject: [PATCH] =?UTF-8?q?UI=20=E0=B8=AB=E0=B8=99=E0=B9=89=E0=B8=B2?= =?UTF-8?q?=E0=B9=80=E0=B8=9E=E0=B8=B4=E0=B9=88=E0=B8=A1/=E0=B9=81?= =?UTF-8?q?=E0=B8=81=E0=B9=89=E0=B9=84=E0=B8=82=E0=B8=95=E0=B8=B1=E0=B8=A7?= =?UTF-8?q?=E0=B8=8A=E0=B8=B5=E0=B9=89=E0=B8=A7=E0=B8=B1=E0=B8=94=E0=B8=95?= =?UTF-8?q?=E0=B8=B2=E0=B8=A1=E0=B8=95=E0=B8=B3=E0=B9=81=E0=B8=AB=E0=B8=99?= =?UTF-8?q?=E0=B9=88=E0=B8=87?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/indicatorByRole/DetailView.vue | 418 +++++++++++++++++- src/modules/14_KPI/interface/request/Main.ts | 16 +- 2 files changed, 430 insertions(+), 4 deletions(-) diff --git a/src/modules/14_KPI/components/indicatorByRole/DetailView.vue b/src/modules/14_KPI/components/indicatorByRole/DetailView.vue index be5955b11..241e429da 100644 --- a/src/modules/14_KPI/components/indicatorByRole/DetailView.vue +++ b/src/modules/14_KPI/components/indicatorByRole/DetailView.vue @@ -1,15 +1,21 @@ diff --git a/src/modules/14_KPI/interface/request/Main.ts b/src/modules/14_KPI/interface/request/Main.ts index 52248c95f..5ff08cce9 100644 --- a/src/modules/14_KPI/interface/request/Main.ts +++ b/src/modules/14_KPI/interface/request/Main.ts @@ -23,4 +23,18 @@ interface FormCompetency { evaluation: string; } -export type { FormQueryRound, FormRound, FormCompetency }; +interface FormDataRole { + position: string; + year: number; + round: string; + org: string; + including: string; + includingName: string; + target: string; + unit: string; + weight: string; + meaning: string; + formula: string; +} + +export type { FormQueryRound, FormRound, FormCompetency, FormDataRole };