From 5ad96b937dd0a0d07d878032d03b15dd841a86a1 Mon Sep 17 00:00:00 2001 From: dataeaseShu Date: Mon, 16 Mar 2026 14:27:56 +0800 Subject: [PATCH] fix(System Variables): Batch delete on the last page. All variables will disappear after deletion; a forced refresh is required. --- frontend/src/views/system/variables/index.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/src/views/system/variables/index.vue b/frontend/src/views/system/variables/index.vue index 1842acda4..3ce3ac239 100644 --- a/frontend/src/views/system/variables/index.vue +++ b/frontend/src/views/system/variables/index.vue @@ -82,7 +82,7 @@ const deleteBatchUser = () => { message: t('dashboard.delete_success'), }) multipleSelectionAll.value = [] - search() + handleCurrentChange(1) }) }) } @@ -102,7 +102,7 @@ const deleteHandler = (row: any) => { type: 'success', message: t('dashboard.delete_success'), }) - search() + handleCurrentChange(1) }) }) } @@ -258,7 +258,7 @@ const saveHandler = () => { type: 'success', message: t('common.save_success'), }) - search() + handleCurrentChange(1) onFormClose() }) }