From d3800d7905aff6b6488d2de7de89f30f2c9431c2 Mon Sep 17 00:00:00 2001 From: Charles <458706687@qq.com> Date: Thu, 2 Jul 2026 15:07:33 +0800 Subject: [PATCH] =?UTF-8?q?:recycle:=20=E6=B8=85=E7=90=86getTodoList?= =?UTF-8?q?=E8=B0=83=E8=AF=95=E6=97=A5=E5=BF=97=E5=B9=B6=E7=BB=9F=E4=B8=80?= =?UTF-8?q?=E5=8F=82=E6=95=B0=E5=86=99=E6=B3=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- saber3/src/api/workflow/index.js | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/saber3/src/api/workflow/index.js b/saber3/src/api/workflow/index.js index c60dc95..d0f1263 100644 --- a/saber3/src/api/workflow/index.js +++ b/saber3/src/api/workflow/index.js @@ -23,17 +23,15 @@ export const getTodoList = (current, size, params) => { processId: processId || '', userCode: userCode || '', }); - const queryParams = { - ...rest, - pageNo: current, - pageSize: size, - zcProcessQueryTask, - }; - console.log('[getTodoList] request params:', queryParams); return request({ url: '/blade-zhaocai/zcProcess/getPageList', method: 'get', - params: queryParams, + params: { + ...rest, + pageNo: current, + pageSize: size, + zcProcessQueryTask, + }, }); };