1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
import request from '@/utils/request' export function FlowMonitorList(data) { return request({ url: `/api/workflow/Engine/FlowMonitor`, method: 'get', data }) } // 批量删除流程监控 export function DeleteList(data) { return request({ url: `/api/workflow/Engine/FlowMonitor`, method: 'DELETE', data }) }