houzhongjian
2024-12-13 eeddc808a8d6428bfd1c2d6e21e4a71f5e9bdbef
提交 | 用户 | 时间
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 }