潘志宝
2024-12-30 9e2e0baeff46fb6ecfe21145f7250d67b13ca79e
提交 | 用户 | 时间
820397 1 import request from '@/config/axios'
H 2
3 export const getProcessDefinition = async (id?: string, key?: string) => {
4   return await request.get({
5     url: '/bpm/process-definition/get',
6     params: { id, key }
7   })
8 }
9
10 export const getProcessDefinitionPage = async (params) => {
11   return await request.get({
12     url: '/bpm/process-definition/page',
13     params
14   })
15 }
16
17 export const getProcessDefinitionList = async (params) => {
18   return await request.get({
19     url: '/bpm/process-definition/list',
20     params
21   })
22 }