From 932f6240ccc78f1b869f0f609641a33e3851df5f Mon Sep 17 00:00:00 2001 From: setthawutttty Date: Tue, 29 Oct 2024 09:34:56 +0700 Subject: [PATCH] =?UTF-8?q?=E0=B9=80=E0=B8=9B=E0=B8=A5=E0=B8=B5=E0=B9=88?= =?UTF-8?q?=E0=B8=A2=E0=B8=99=E0=B9=80=E0=B8=AA=E0=B9=89=E0=B8=99=20API?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/registry/api.registry.ts | 1 + src/modules/07_insignia/components/2_Manage/Tab1.vue | 3 +-- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/api/registry/api.registry.ts b/src/api/registry/api.registry.ts index a127aa99a..40c26ef3e 100644 --- a/src/api/registry/api.registry.ts +++ b/src/api/registry/api.registry.ts @@ -5,6 +5,7 @@ const metadata = `${env.API_URI}/org/metadata/`; export default { registryNew: (type: string) => `${registryNew}${type}`, + registryNewOtherSystem: (type: string) => `${registryNew}/otherSystem${type}`, registryNewByProfileId: (profileId: string, type: string) => `${registryNew}${type}/${profileId}`, diff --git a/src/modules/07_insignia/components/2_Manage/Tab1.vue b/src/modules/07_insignia/components/2_Manage/Tab1.vue index b180a1aec..e3bd8c44d 100644 --- a/src/modules/07_insignia/components/2_Manage/Tab1.vue +++ b/src/modules/07_insignia/components/2_Manage/Tab1.vue @@ -313,9 +313,8 @@ const filterOption = ref([ */ async function fecthlistperson(id: string = "") { showLoader(); - http - .get(config.API.registryNew(""), { params: formFilter }) + .get(config.API.registryNewOtherSystem(""), { params: formFilter }) .then((res) => { maxPage.value = Math.ceil(res.data.result.total / formFilter.pageSize); total.value = res.data.result.total;