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;