From 3f763a87f9c2ee311b851f688323a5d2afaf02c6 Mon Sep 17 00:00:00 2001 From: zhangdi <15053473693@163.com> Date: Thu, 5 Feb 2026 14:59:34 +0800 Subject: [PATCH] =?UTF-8?q?=E5=9C=A8=E5=88=B6=E5=93=81=E6=8E=A5=E5=8F=A3?= =?UTF-8?q?=E5=A4=84=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/productionManagement/WIPChange.js | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/api/productionManagement/WIPChange.js b/src/api/productionManagement/WIPChange.js index 1fab640..0f2fbd3 100644 --- a/src/api/productionManagement/WIPChange.js +++ b/src/api/productionManagement/WIPChange.js @@ -1,10 +1,14 @@ import request from '@/axios'; //列表接口 -export const getList = (params) => { +export const getList = (current, size, params) => { return request({ url: '/blade-desk/disTasking/disTaskHandle', method: 'get', - params + params: { + ...params, + current, + size, + }, }); };