From 44e3eee6d1d4937dee47aabcf7b9da69254571ef Mon Sep 17 00:00:00 2001 From: Charles <458706687@qq.com> Date: Thu, 2 Jul 2026 13:44:10 +0800 Subject: [PATCH] =?UTF-8?q?:bug:=20=E4=BF=AE=E5=A4=8D=E5=BE=85=E5=8A=9E?= =?UTF-8?q?=E6=9F=A5=E8=AF=A2=E5=8F=82=E6=95=B0=E7=BB=93=E6=9E=84=EF=BC=8C?= =?UTF-8?q?=E6=8C=89=20zcProcessQueryTask=20=E5=AF=B9=E8=B1=A1=E4=BC=A0?= =?UTF-8?q?=E5=8F=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- saber3/src/api/workflow/index.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/saber3/src/api/workflow/index.js b/saber3/src/api/workflow/index.js index 242a757..e016a1f 100644 --- a/saber3/src/api/workflow/index.js +++ b/saber3/src/api/workflow/index.js @@ -16,13 +16,18 @@ export const getProcessTypes = () => { * 对应接口: GET /blade-zhaocai/zcProcess/getPageList */ export const getTodoList = (current, size, params) => { + const { keyWord, processName, processId, userCode, ...rest } = params; return request({ url: '/blade-zhaocai/zcProcess/getPageList', method: 'get', params: { - ...params, + ...rest, pageNo: current, pageSize: size, + 'zcProcessQueryTask.keyWord': keyWord, + 'zcProcessQueryTask.processName': processName, + 'zcProcessQueryTask.processId': processId, + 'zcProcessQueryTask.userCode': userCode, }, }); };