diff --git a/src/modules/03_logs/components/LogTable.vue b/src/modules/03_logs/components/LogTable.vue index e7301f9b..195499ce 100644 --- a/src/modules/03_logs/components/LogTable.vue +++ b/src/modules/03_logs/components/LogTable.vue @@ -222,16 +222,18 @@ const qureyBody = reactive({ async function selectedOrg(id: string) { qureyBody.rootId = id; qureyBody.page = 1; + logData.value = []; await storeData.fetchLog( { rootId: qureyBody.rootId ?? undefined, size: size.value ?? undefined, search: inputSearch.value ?? undefined, systemName: systemName.value ?? undefined, - searchAfter: searchAfter.value ?? undefined, + // searchAfter: searchAfter.value ?? undefined, sort: sortTime.value, startDate: new Date(startDate.value) ?? undefined, endDate: new Date(endDate.value) ?? undefined, + searchStatus: searchStatus.value ?? undefined, }, true ); @@ -308,6 +310,7 @@ function handleScroll() { sort: sortTime.value, startDate: new Date(startDate.value) ?? undefined, endDate: new Date(endDate.value) ?? undefined, + searchStatus: searchStatus.value ?? undefined, }, true );