From 0867327d337ea6e30d1363a776e276d7a32e1db8 Mon Sep 17 00:00:00 2001 From: gaoshp <291585735@qq.com> Date: 星期日, 20 七月 2025 20:49:43 +0800 Subject: [PATCH] 流程查询 --- src/api/flowmgr/processQuery.js | 28 ++++++++++++++++++++++++++++ 1 files changed, 28 insertions(+), 0 deletions(-) diff --git a/src/api/flowmgr/processQuery.js b/src/api/flowmgr/processQuery.js new file mode 100644 index 0000000..c6c8977 --- /dev/null +++ b/src/api/flowmgr/processQuery.js @@ -0,0 +1,28 @@ +/* + * @Date: 2025-06-12 22:38:05 + * @LastEditors: gaoshp + * @LastEditTime: 2025-07-20 20:33:26 + * @FilePath: /mdmweb/src/api/flowmgr/processQuery.js + */ +import request from '@/axios'; +export const getList = (current, size, params) => { + return request({ + url: '/blade-mdm/flow/mgr/search-list', + method: 'get', + params: { + ...params, + current, + size, + }, + }) +}; + +export const deleteRow = (data) => { + return request({ + url: '/blade-mdm/flow/mgr/delete-instance', + method: 'post', + data: { + ...data, + }, + }) +}; \ No newline at end of file -- Gitblit v1.9.3