From 122811b2cf7ca40ddb74fd374133db856db7b0a0 Mon Sep 17 00:00:00 2001 From: "DESKTOP-1R2VSQH\\Lenovo ThinkPad E490" Date: Fri, 24 Jan 2025 16:46:45 +0700 Subject: [PATCH] fix insignia --- src/modules/07_insignia/components/2_Manage/Tab1.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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;