feat: BPM-报表

This commit is contained in:
LesanOuO
2025-01-25 13:29:00 +08:00
parent 7db5ac81ae
commit 52c393a04b
3 changed files with 204 additions and 0 deletions

View File

@ -60,6 +60,10 @@ export const getProcessInstanceManagerPage = async (params: any) => {
return await request.get({ url: '/bpm/process-instance/manager-page', params })
}
export const getProcessInstanceReportPage = async (params: any) => {
return await request.get({ url: '/bpm/process-instance/report-page', params })
}
export const createProcessInstance = async (data) => {
return await request.post({ url: '/bpm/process-instance/create', data: data })
}