From ce3b841ca7fc9c5c4ba045014afda66f5bba84d6 Mon Sep 17 00:00:00 2001 From: zhengkunwang <31820853+zhengkunwang223@users.noreply.github.com> Date: Thu, 11 Jan 2024 10:59:38 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E8=A7=A3=E5=86=B3=E6=96=87=E4=BB=B6?= =?UTF-8?q?=E5=88=97=E8=A1=A8=E8=B7=B3=E8=BD=AC=E6=AF=8F=E9=A1=B5=E6=9D=A1?= =?UTF-8?q?=E6=95=B0=E9=99=90=E5=88=B6=E4=B8=8D=E7=94=9F=E6=95=88=E7=9A=84?= =?UTF-8?q?=E9=97=AE=E9=A2=98=20(#3570)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/views/host/file-management/index.vue | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frontend/src/views/host/file-management/index.vue b/frontend/src/views/host/file-management/index.vue index 1e97ebef0..98b066702 100644 --- a/frontend/src/views/host/file-management/index.vue +++ b/frontend/src/views/host/file-management/index.vue @@ -499,11 +499,13 @@ const back = () => { const jump = async (url: string) => { const oldUrl = req.path; + const oldPageSize = req.pageSize; // reset search params before exec jump Object.assign(req, initData()); req.path = url; req.containSub = false; req.search = ''; + req.pageSize = oldPageSize; let searchResult = await searchFile(); globalStore.setLastFilePath(req.path);