diff --git a/src/modules/07_insignia/components/2_Manage/Tab1.vue b/src/modules/07_insignia/components/2_Manage/Tab1.vue index 939aad11a..fb3da9f37 100644 --- a/src/modules/07_insignia/components/2_Manage/Tab1.vue +++ b/src/modules/07_insignia/components/2_Manage/Tab1.vue @@ -360,7 +360,9 @@ const filterOption = ref([ async function fecthlistperson() { showLoader(); http - .get(config.API.registryNewOtherSystem(""), { params: formFilter }) + .get(config.API.registryNewOtherSystem(""), { + params: { ...formFilter, nodeId: organization.value }, + }) .then((res) => { maxPage.value = Math.ceil(res.data.result.total / formFilter.pageSize); total.value = res.data.result.total;