From eac72cdc5a4ba064d1a70dab5ca33822a58de236 Mon Sep 17 00:00:00 2001 From: "STW_TTTY\\stwtt" Date: Thu, 12 Sep 2024 15:12:18 +0700 Subject: [PATCH] =?UTF-8?q?=E0=B9=81=E0=B8=81=E0=B9=89=20api=20=E0=B8=9B?= =?UTF-8?q?=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 --- .../14_KPI/components/Tab/Dialog/01_FormIndicator.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/modules/14_KPI/components/Tab/Dialog/01_FormIndicator.vue b/src/modules/14_KPI/components/Tab/Dialog/01_FormIndicator.vue index 98bf057e9..45f0a6194 100644 --- a/src/modules/14_KPI/components/Tab/Dialog/01_FormIndicator.vue +++ b/src/modules/14_KPI/components/Tab/Dialog/01_FormIndicator.vue @@ -94,7 +94,7 @@ function fetchListPlan() { showLoader(); http - .post(config.API.kpiPlan + `/search-edit`, formFilter) + .post(config.API.kpiPlan + `/search-kpi-plan`, formFilter) .then((res) => { listTarget.value = res.data.result.data; maxPage.value = Math.ceil(res.data.result.total / formFilter.pageSize); @@ -148,7 +148,7 @@ function fetchListRole() { formFilter.position = store.dataProfile.position; http - .post(config.API.kpiRole + `/search-edit`, formFilter) + .post(config.API.kpiRole + `/search-kpi-role`, formFilter) .then((res) => { listTarget.value = res.data.result.data; maxPage.value = Math.ceil(res.data.result.total / formFilter.pageSize); @@ -208,7 +208,7 @@ function fetchListSpecial() { showLoader(); http - .post(config.API.kpiSpecial + `/search-edit`, body) + .post(config.API.kpiSpecial + `/search-kpi-special`, body) .then((res) => { listTarget.value = res.data.result.data; maxPage.value = Math.ceil(res.data.result.total / formFilter.pageSize);